From da62d5941e1197669779a8bed4b9b1c72e46fc9c Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 29 Apr 2020 23:56:03 +0100 Subject: [PATCH] travis: osx+win tests, sperate docs build --- .travis.yml | 53 +++++++++++++++++++++++++++++++++++++++++++++--- Makefile | 5 ++++- requirements.txt | 2 -- 3 files changed, 54 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 34d0a91..307db64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,20 +2,67 @@ language: python os: linux jobs: include: +# docs build + - name: Docs (py36) + python: 3.6 + install: make init + script: make docs + after_script: [] +# linux - python: 2.7 - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 - python: 3.8 - os: linux +# OSX + - name: OSX Python 2.7 + os: osx + language: shell + before_install: + - cp -fv `which python2` `which python` || true + - cp -fv `which pip2` `which pip` || true + - pip install --upgrade pip + after_script: [] + - name: OSX Python 3.7 + os: osx + language: shell + before_install: + - cp -fv `which python3` `which python` || true + - cp -fv `which pip3` `which pip` || true + - pip install --upgrade pip + after_script: [] +# Windows + - name: Win Python 3.6 + language: shell + os: windows + env: PATH=/c/Python36:/c/Python36/Scripts:$PATH + before_install: + - choco install python --version 3.6.8 + - python -m pip install --upgrade pip + after_script: [] + - name: Win Python 3.7 + language: shell + os: windows + env: PATH=/c/Python37:/c/Python37/Scripts:$PATH + before_install: + - choco install python --version 3.7.4 + - python -m pip install --upgrade pip + after_script: [] + - name: Win Python 3.8 + language: shell + os: windows + env: PATH=/c/Python38:/c/Python38/Scripts:$PATH + before_install: + - choco install python --version 3.8.2 + - python -m pip install --upgrade pip + after_script: [] install: - pip install -r requirements.txt - pip install coveralls - pip install scrutinizer-ocular script: - - make test - - make docs + - PYTHONHASHSEED=0 pytest --cov=steam tests after_script: - coveralls - ocular diff --git a/Makefile b/Makefile index 6073fa7..5ab7ae7 100644 --- a/Makefile +++ b/Makefile @@ -24,9 +24,12 @@ export HELPBODY help: @echo "$$HELPBODY" -init: +init: init_docs pip install -r requirements.txt +init_docs: + pip install sphinx==1.8.5 sphinx_rtd_theme + test: coverage erase PYTHONHASHSEED=0 pytest --cov=steam tests diff --git a/requirements.txt b/requirements.txt index b16c571..e7fa7a2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,6 +12,4 @@ pytest-cov==2.5.1 mock==1.3.0 PyYAML==5.1 vcrpy==2.0.1 -sphinx==1.8.5 -sphinx_rtd_theme cachetools>=3.0.0