Commit a45b39a 1 parent a543070 commit a45b39a Copy full SHA for a45b39a
File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,16 @@ jobs:
32
32
uses : actions/setup-python@v2
33
33
with :
34
34
python-version : ${{ matrix.python-version }}
35
- - name : Depedencies
35
+ - uses : actions/checkout@v4
36
+ - name : Install Poetry
37
+ uses : snok/install-poetry@v1
38
+ with :
39
+ virtualenvs-create : true
40
+ virtualenvs-in-project : true
41
+ - name : Install python dependencies
36
42
run : |
37
- python -m pip install wheel
38
- python -m pip install pytest pytest-django pytest-cov psycopg2-binary
39
- python setup.py develop
43
+ poetry install --sync --no-interaction --no-root --with test
44
+ poetry run pip install -e .
40
45
41
46
- name : Run tests
42
47
run : >-
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ python = ">=3.10"
30
30
django = " >=5.0.2"
31
31
psycopg = " >=3.1.18"
32
32
33
-
34
33
[tool .poetry .group .test .dependencies ]
35
34
pytest = " ^8.0.1"
36
35
pytest-django = " ^4.8.0"
You can’t perform that action at this time.
0 commit comments