We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f1a67 commit d7c3e6dCopy full SHA for d7c3e6d
.circleci/config.yml
.github/workflows/tests.yaml
@@ -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/actions-poetry@v1.5.0
12
+ with:
13
+ python_version: 3.8.0
14
+ poetry_version: 1.0
15
+ working_directory: ./working_dir # Optional, defaults to '.'
16
+ args: install
17
+ - name: Run pytest
18
19
20
21
22
+ working_directory: ./working_dir
23
+ args: run python -m pytest --cov=src --cov-branch --cov-fail-under=75 tests/
0 commit comments