diff options
-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 |