Remove venv stuff
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
ci/woodpecker/push/linting Pipeline was successful

This commit is contained in:
RealStickman 2022-09-12 17:52:11 +02:00
parent dfe2c954a3
commit 8c71057fd1
3 changed files with 0 additions and 14 deletions

View File

@ -6,8 +6,5 @@ pipeline:
branch: [main, master]
commands:
- python --version
- pip install -U virtualenv --quiet
- virtualenv venv
- source venv/bin/activate
- pip install -U build --quiet
- build

View File

@ -6,9 +6,6 @@ pipeline:
branch: [main, master]
commands:
- python --version
- pip install -U virtualenv --quiet
- virtualenv venv
- source venv/bin/activate
- pip install -U twine --quiet
- twine upload --skip-existing --repository testpypi -u $TWINE_USERNAME -p $TWINE_PASSWORD dist/*

View File

@ -4,12 +4,7 @@ pipeline:
image: python:latest
group: linting
commands:
- echo $SHELL
- cat /etc/os-release
- python --version
- pip install -U virtualenv --quiet
- virtualenv venv
- source venv/bin/activate
- pip install -U pyright --quiet
- pyright woodpeckerpy/main.py
@ -18,8 +13,5 @@ pipeline:
group: linting
commands:
- python --version
- pip install -U virtualenv --quiet
- virtualenv venv
- source venv/bin/activate
- pip install -U black --quiet
- black woodpeckerpy/main.py