mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
installs missing python3.venv
This commit is contained in:
parent
cc626f8954
commit
481b315605
1 changed files with 4 additions and 3 deletions
|
@ -5,6 +5,7 @@ packages:
|
||||||
- python3
|
- python3
|
||||||
- python3-dev
|
- python3-dev
|
||||||
- python3-pip
|
- python3-pip
|
||||||
|
- python3-venv
|
||||||
tasks:
|
tasks:
|
||||||
- dependencies: |
|
- dependencies: |
|
||||||
pip3 install --user poetry
|
pip3 install --user poetry
|
||||||
|
@ -15,13 +16,13 @@ tasks:
|
||||||
export PATH="$PATH:/home/build/.local/bin"
|
export PATH="$PATH:/home/build/.local/bin"
|
||||||
cd Stegano
|
cd Stegano
|
||||||
# stop the build if there are Python syntax errors or undefined names
|
# stop the build if there are Python syntax errors or undefined names
|
||||||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
||||||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
||||||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
||||||
- test: |
|
- test: |
|
||||||
export PATH="$PATH:/home/build/.local/bin"
|
export PATH="$PATH:/home/build/.local/bin"
|
||||||
cd Stegano
|
cd Stegano
|
||||||
poetry run nosetests --with-coverage --cover-package=stegano
|
poetry run nosetests
|
||||||
- typecheck: |
|
- typecheck: |
|
||||||
export PATH="$PATH:/home/build/.local/bin"
|
export PATH="$PATH:/home/build/.local/bin"
|
||||||
cd Stegano
|
cd Stegano
|
||||||
|
|
Loading…
Add table
Reference in a new issue