diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-24 22:35:43 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-24 22:35:43 -0500 |
commit | 5b611b515a147dbf6a32f7a94b03a8c477e0bba7 (patch) | |
tree | 0fa5002835e9459279296217589e566f9faaea4c | |
parent | 945acf3e6083186756044233ae1b65f6063a80df (diff) | |
download | yt-local-5b611b515a147dbf6a32f7a94b03a8c477e0bba7.tar.lz yt-local-5b611b515a147dbf6a32f7a94b03a8c477e0bba7.tar.xz yt-local-5b611b515a147dbf6a32f7a94b03a8c477e0bba7.zip |
Add .build.yml file
-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..364cacf --- /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 pytest + pytest |