Skip to content

Commit 004ba9b

Browse files
committed
Extract test step into script
Signed-off-by: Mattt Zmuda <[email protected]>
1 parent a6b95b5 commit 004ba9b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
run: |
3737
./script/lint
3838
- name: Test
39-
run: python -m pytest
39+
run: ./script/test

script/test

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
python -m pytest -v

0 commit comments

Comments
 (0)