summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2019-05-21 15:48:43 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2019-05-22 11:15:32 +0100
commita8fac1381b88c82cdc85059674e256aab033c36f (patch)
tree63787712b534de015722729e401485458274554d /.travis.yml
parent65f6ede8b24ad093285a514360a1082cec892f49 (diff)
downloaddeluge-a8fac1381b88c82cdc85059674e256aab033c36f.tar.gz
deluge-a8fac1381b88c82cdc85059674e256aab033c36f.tar.bz2
deluge-a8fac1381b88c82cdc85059674e256aab033c36f.zip
[Packaging] Cleanup README for Pypi
- Set a minimal Python version 3.5 and remove universal wheels. - Tidy up the README - Add Project URL for issues and docs.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index f3adfa1e2..f9a0fcc21 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -46,10 +46,12 @@ addons:
# Install dependencies
install:
- pip install tox tox-venv
+ # GTKUI tests
- "if [ $TOX_ENV == 'gtkui' ]; then
sudo apt install python-gi python-gi-cairo python3-gi python3-gi-cairo \
gir1.2-gtk-3.0;
fi"
+ # Security tests
- "if [ $TOX_ENV == 'security' ]; then
testssl_url=https://github.com/drwetter/testssl.sh/archive/v2.9.5-5.tar.gz;
wget -O- $testssl_url | tar xz
@@ -58,6 +60,7 @@ install:
before_script:
- export PYTHONPATH=$PYTHONPATH:$PWD
+ # Verify libtorrent installed and version
- python -c "import libtorrent as lt; print(lt.__version__)"
# Start xvfb for the GTKUI tests
- "if [ $TOX_ENV == 'gtkui' ]; then
@@ -65,6 +68,7 @@ before_script:
--make-pidfile --pidfile /tmp/custom_xvfb_99.pid \
--exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16;
fi"
+ # Create missing version file
- echo "2.0.0.dev0" > RELEASE-VERSION
script: