Add test dependencies in requirement.txt file

This commit is contained in:
Jesús
2021-02-24 22:44:03 -05:00
parent e3a009a6bd
commit ec4f7d29e4
2 changed files with 38 additions and 0 deletions

12
.build.yml Normal file
View File

@@ -0,0 +1,12 @@
image: debian/buster
packages:
- python3-pip
- virtualenv
tasks:
- test: |
cd yt-local
virtualenv -p python3 venv
source venv/bin/activate
python --version
pip install -r requirements-dev.txt
pytest