Skip to content

Commit

Permalink
ci: revert changes in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo-sturdy committed Aug 21, 2024
1 parent 54d4098 commit 84af7ad
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:

env:
RUSTFLAGS: -D warnings
TEST_RUNNER: osmosis-test-tube

jobs:
test:
Expand All @@ -15,12 +16,7 @@ jobs:
uses: actions/checkout@v3

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.79.0
target: wasm32-unknown-unknown
override: true
run: cargo make install-stable

- name: Run unit tests
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -50,23 +46,22 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --test osmosis_tests
args: --locked --test osmosis_tests --all-features
env:
RUST_BACKTRACE: 1

- name: Run astroport integration tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --test astroport_tests -- --test-threads=1
args: --locked --test astroport_tests --all-features
env:
RUST_BACKTRACE: 1

- name: Run osmosis property tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --test osmosis_proptests -- --test-threads=1
args: --locked --test osmosis_proptests --all-features
env:
RUST_BACKTRACE: 1

0 comments on commit 84af7ad

Please sign in to comment.