Skip to content

Commit

Permalink
update unit, nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Feb 21, 2024
1 parent d558538 commit 75c1cac
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 16 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,17 @@ jobs:
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test TARGETS=full
run: make test TARGETS=full
smoke-tests:
runs-on: ubuntu-latest
env:
SPARSEZOO_TEST_MODE: "true"
NM_DISABLE_ANALYTICS: "true"
steps:
- uses: actions/checkout@v2
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test
- name: Run CLI smoke tests
run: PYTEST_ARGS="-m smoke" make test
30 changes: 15 additions & 15 deletions .github/workflows/test-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ jobs:
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test
smoke-tests:
runs-on: ubuntu-latest
env:
SPARSEZOO_TEST_MODE: "true"
NM_DISABLE_ANALYTICS: "true"
needs: test-setup
if: ${{needs.test-setup.outputs.python-diff == 1}}
steps:
- uses: actions/checkout@v2
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test
- name: Run CLI smoke tests
run: PYTEST_ARGS="-m smoke" make test
smoke-tests:
runs-on: ubuntu-latest
env:
SPARSEZOO_TEST_MODE: "true"
NM_DISABLE_ANALYTICS: "true"
needs: test-setup
if: ${{needs.test-setup.outputs.python-diff == 1}}
steps:
- uses: actions/checkout@v2
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test
- name: Run CLI smoke tests
run: PYTEST_ARGS="-m smoke" make test

0 comments on commit 75c1cac

Please sign in to comment.