Skip to content

Commit 0e70490

Browse files
authored
Merge pull request #13 from lczub/master
new TestLink-API-Python-client release
2 parents 6b22fee + 7657a9d commit 0e70490

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+9286
-1288
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
.tox
2+
.idea
13
.project
24
.pydevproject
35
.settings/
46
build/
57
*.pyc
6-
dist/
8+
dist/
79
MANIFEST

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- "2.7"
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
9+
# command to install dependencies
10+
install:
11+
- pip install .
12+
13+
# command to run tests
14+
# online tests uses TL connection, defined in
15+
# TESTLINK_API_PYTHON_DEVKEY and TESTLINK_API_PYTHON_SERVER_URL
16+
# see https://travis-ci.org/USER/TestLink-API-Python-client/settings/env_vars
17+
# suggestion: use TL demo project with user pyTLapi, see tox.ini
18+
script:
19+
- py.test test/utest-offline
20+
- if [[ $TESTLINK_API_PYTHON_SERVER_URL ]]; then py.test test/utest-online; fi
21+
# see known problem: countTestCasesTS should handle the sufficient right errors #62
22+
# - if [[ $TESTLINK_API_PYTHON_SERVER_URL && $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python example/TestLinkExample.py; fi

0 commit comments

Comments
 (0)