Python3 improvements still
This commit is contained in:
parent
705c6fcb5d
commit
2a9ade77d8
1 changed files with 4 additions and 3 deletions
|
@ -22,12 +22,13 @@ jobs:
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip
|
apt-get update && apt-get install -y python3-pip
|
||||||
pip install -r requirements.txt
|
pip3 install --upgrade pip
|
||||||
|
pip3 install -r requirements.txt
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
pytest
|
python3 -m pytest
|
||||||
|
|
||||||
build:
|
build:
|
||||||
needs: test
|
needs: test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue