aboutsummaryrefslogtreecommitdiffstats
path: root/.build.yml
blob: 47de52e86204e12877ccb447ce2ce060c02ece95 (plain)
1
2
3
4
5
6
7
8
9
10
11
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