Skip to content

Commit

Permalink
New testing framework
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccomb committed Nov 26, 2023
1 parent 65337eb commit 642b244
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: update viz
name: tests

permissions:
contents: write
Expand All @@ -11,11 +11,13 @@ env:
CARGO_TERM_COLOR: always

jobs:
full_update:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: pip install -r requirements.txt
- name: create the visualization
run: pip install nose && nosetests --nocapture
- name: install testing framework
run: pip install nose2
- name: run tests
run: nose2

0 comments on commit 642b244

Please sign in to comment.