Skip to content

Commit 29db4a0

Browse files
committed
run pytest in separate sh file
1 parent 17736cc commit 29db4a0

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
pip install .[dev]
2525
- name: Test
2626
run: |
27-
pytest -n auto -x -rA --cov=./ --cov-report xml
28-
- uses: actions/checkout@v2
27+
sh tests/run_basics.sh
2928
- name: Codecov
30-
uses: codecov/codecov-action@v2
29+
uses: codecov/codecov-action@v1

tests/run_basics.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env bash
2+
pytest -n auto -x -rA --cov=./ --cov-report xml

0 commit comments

Comments
 (0)