-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
190 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tox-travis>=0.11 | ||
-r ../../cpt/requirements_test.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ fi | |
|
||
conan user | ||
mkdir ~/.conan/data | ||
nosetests cpt.test --nocapture | ||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,38 @@ | ||
cache: pip | ||
sudo: false | ||
language: python | ||
python: | ||
- 2.7 | ||
- 3.6 | ||
os: linux | ||
dist: xenial | ||
dist: trusty | ||
|
||
matrix: | ||
include: | ||
- language: generic | ||
os: osx | ||
env: PYVER=py27 | ||
jobs: | ||
fast_finish: true | ||
include: | ||
|
||
- stage: Conan Latest - Linux | ||
python: 2.7 | ||
env: TOXENV=py27-conanlatest | ||
- python: 3.7 | ||
env: TOXENV=py37-conanlatest | ||
dist: xenial | ||
|
||
- stage: Conan Development - Linux | ||
python: 2.7 | ||
env: TOXENV=py27-conandev | ||
- python: 3.7 | ||
env: TOXENV=py37-conandev | ||
dist: xenial | ||
|
||
# Macos is slow, only if everything has passed | ||
- stage: Macos - all Conan versions | ||
language: generic | ||
os: osx | ||
osx_image: xcode8.3 | ||
env: PYVER=py27 TOXENV=py27-conanlatest | ||
- language: generic | ||
os: osx | ||
osx_image: xcode8.3 | ||
env: PYVER=py37 TOXENV=py37-conanlatest | ||
|
||
# command to install dependencies | ||
install: | ||
- ./.ci/travis/install.sh | ||
before_script: | ||
- export PYTHONPATH=$PYTHONPATH:$(pwd) | ||
- export CONAN_TEST_SUITE=1 | ||
# command to run tests | ||
- .ci/travis/install.sh | ||
|
||
script: | ||
- ./.ci/travis/run.sh | ||
- .ci/travis/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
__version__ = '0.23.0' | ||
NEWEST_CONAN_SUPPORTED = "1.12" | ||
__version__ = '0.24.0' | ||
NEWEST_CONAN_SUPPORTED = "1.14.0-dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
idna==2.6 | ||
six>=1.10.0 | ||
requests[security] | ||
conan>=1.7.0, <1.13.0 | ||
conan>=1.7.0, <1.14.0 | ||
tabulate==0.8.2 | ||
pyOpenSSL>=16.0.0, <19.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
nose>=1.3.7 | ||
nose_parameterized>=0.5.0, <0.6.0 | ||
mock>=1.3.0, <1.4.0 | ||
WebTest>=2.0.18, <2.1.0 | ||
WebTest>=2.0.18, <2.1.0 | ||
tox>=3.7.0 | ||
tox-venv>=0.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[tox] | ||
skipsdist = True | ||
|
||
envlist = | ||
py{27,37}-conan{latest,dev} | ||
|
||
[testenv] | ||
deps = | ||
-rcpt/requirements_test.txt | ||
tabulate | ||
conanlatest: conan | ||
conandev: https://github.com/conan-io/conan/archive/develop.tar.gz | ||
|
||
setenv = | ||
PYTHONDONTWRITEBYTECODE=1 | ||
PYTHONPATH = {toxinidir}:{env:PYTHONPATH:} | ||
CONAN_TEST_SUITE=1 | ||
|
||
commands = | ||
nosetests {posargs:cpt.test} |