diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-24 22:44:03 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-24 22:44:03 -0500 |
commit | ec4f7d29e4d123a5a250677e15f5778fb3b43acd (patch) | |
tree | 0e471620b7db674e2766cfbfcded53d0611b0d13 /.build.yml | |
parent | e3a009a6bdfd03f190714d59177cce5c0083ac92 (diff) | |
download | yt-local-ec4f7d29e4d123a5a250677e15f5778fb3b43acd.tar.lz yt-local-ec4f7d29e4d123a5a250677e15f5778fb3b43acd.tar.xz yt-local-ec4f7d29e4d123a5a250677e15f5778fb3b43acd.zip |
Add test dependencies in requirement.txt file
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..47de52e --- /dev/null +++ b/.build.yml @@ -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 |