.build.yml 241 B

12345678910111213
  1. image: debian/buster
  2. packages:
  3. - python3-pip
  4. - virtualenv
  5. tasks:
  6. - test: |
  7. cd yt-local
  8. virtualenv -p python3 venv
  9. source venv/bin/activate
  10. python --version
  11. pip install -r requirements-dev.txt
  12. pytest