mirror of https://github.com/flaggo/pydu.git
add .appveyor.yml; add py34 to travis and tox
This commit is contained in:
parent
31831a1990
commit
de578d50ec
|
@ -0,0 +1,34 @@
|
|||
build: off
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- PYTHON: "C:\\Python27-x64"
|
||||
PYTHON_VERSION: "2.7.x"
|
||||
PYTHON_ARCH: "64"
|
||||
TOXENV: "py27"
|
||||
|
||||
- PYTHON: "C:\\Python34-x64"
|
||||
PYTHON_VERSION: "3.4.x"
|
||||
PYTHON_ARCH: "64"
|
||||
TOXENV: "py34"
|
||||
|
||||
- PYTHON: "C:\\Python35-x64"
|
||||
PYTHON_VERSION: "3.5.x"
|
||||
PYTHON_ARCH: "64"
|
||||
TOXENV: "py35"
|
||||
|
||||
- PYTHON: "C:\\Python36-x64"
|
||||
PYTHON_VERSION: "3.6.x"
|
||||
PYTHON_ARCH: "64"
|
||||
TOXENV: "py36"
|
||||
|
||||
install:
|
||||
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
||||
- "python --version"
|
||||
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
|
||||
- "pip install --disable-pip-version-check --user --upgrade pip"
|
||||
- "%CMD_IN_ENV% pip install tox coverage"
|
||||
|
||||
test_script:
|
||||
# Run the project tests
|
||||
- "%CMD_IN_ENV% tox"
|
|
@ -1,12 +1,20 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
- "3.4"
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
|
||||
sudo: false
|
||||
|
||||
cache: pip
|
||||
|
||||
install:
|
||||
- pip install tox-travis
|
||||
|
||||
script:
|
||||
- tox
|
||||
|
||||
notifications:
|
||||
email:
|
||||
recipients:
|
||||
|
|
Loading…
Reference in New Issue