Skip to content

Commit 13cf849

Browse files
kick off poetry test
1 parent be1e243 commit 13cf849

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/poetry-pytest.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run Tests
2+
on: push
3+
4+
jobs:
5+
pytest:
6+
name: pytest
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: Install
11+
uses: abatilo/[email protected]
12+
with:
13+
python_version: 3.8.0
14+
poetry_version: 0.12.17
15+
working_directory: ./working_dir # Optional, defaults to '.'
16+
args: install
17+
- name: Run pytest
18+
uses: abatilo/[email protected]
19+
with:
20+
python_version: 3.8.0
21+
poetry_version: 0.12.17
22+
working_directory: ./working_dir
23+
args: run python -m pytest --cov=redibench_admin --cov-branch --cov-fail-under=100 tests/

0 commit comments

Comments
 (0)