aboutsummaryrefslogtreecommitdiffstats
path: root/.build.yml
blob: 364cacf41a90a25711cdc841e7a77d08aede4eb3 (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 pytest
      pytest