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 | |
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
-rw-r--r-- | .build.yml | 12 | ||||
-rw-r--r-- | requirements-dev.txt | 26 |
2 files changed, 38 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 diff --git a/requirements-dev.txt b/requirements-dev.txt index 559a4fc..e3481dc 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1 +1,27 @@ +attrs==20.3.0 +Brotli==1.0.9 +cachetools==4.2.0 +click==7.1.2 +defusedxml==0.6.0 +Flask==1.1.2 +gevent==20.9.0 +greenlet==0.4.17 +importlib-metadata==3.7.0 +iniconfig==1.1.1 +itsdangerous==1.1.0 +Jinja2==2.11.2 +MarkupSafe==1.1.1 +packaging==20.9 +pluggy==0.13.1 +py==1.10.0 +pyparsing==2.4.7 +PySocks==1.7.1 pytest>=6.2.1 +stem==1.8.0 +toml==0.10.2 +typing-extensions==3.7.4.3 +urllib3==1.26.2 +Werkzeug==1.0.1 +zipp==3.4.0 +zope.event==4.5.0 +zope.interface==5.2.0 |