aboutsummaryrefslogtreecommitdiffstats
path: root/.build.yml
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-02-24 22:44:03 -0500
committerJesús <heckyel@hyperbola.info>2021-02-24 22:44:03 -0500
commitec4f7d29e4d123a5a250677e15f5778fb3b43acd (patch)
tree0e471620b7db674e2766cfbfcded53d0611b0d13 /.build.yml
parente3a009a6bdfd03f190714d59177cce5c0083ac92 (diff)
downloadyt-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.yml12
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