There was an error while loading. Please reload this page.
1 parent 6b0e9fe commit d603be9Copy full SHA for d603be9
6 files changed
.github/workflows/tests.yml
@@ -14,15 +14,14 @@ jobs:
14
tests:
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v2
18
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
19
with:
20
python-version: "3.x"
21
- - uses: abatilo/actions-poetry@v2.0.0
+ cache: 'pip'
22
- name: Install Project
23
- run: poetry install
+ run: pip install --user .[dev]
24
- name: Run tests
25
run: |
26
- poetry run coverage run -m pytest -vv tests
27
- poetry run coverage report
28
-
+ mypy . || true
+ pytest -vv tests
.gitignore
@@ -1,6 +1,6 @@
1
__pycache__/
2
*.pyc
3
-epy_reader.egg-info/*
+epy_reader.egg-info/
4
.venv
5
.idea
6
dist
@@ -9,5 +9,3 @@ tmp/
9
10
build/**
11
!build/gen_pkgbuild.sh
12
13
-.envrc
0 commit comments