Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fastkml
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Aurélien Vermylen
fastkml
Commits
b1379d8b
Commit
b1379d8b
authored
Oct 16, 2014
by
Ian Lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only run travis doc build on Python != 3.2
parent
d008af7b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
.travis.yml
.travis.yml
+4
-1
No files found.
.travis.yml
View file @
b1379d8b
...
@@ -18,13 +18,16 @@ env:
...
@@ -18,13 +18,16 @@ env:
install
:
install
:
-
pip install -r requirements.txt
-
pip install -r requirements.txt
-
if $LXML ==
true
; then pip install lxml; fi
-
if $LXML ==
true
; then pip install lxml; fi
# Python 2.6 uses the unittest2 testing package backported from Python
# 2.7+'s unittest packages
-
if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi
-
if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi
# command to run tests, e.g. python setup.py test
# command to run tests, e.g. python setup.py test
script
:
script
:
-
pep8 --exclude test_main.py fastkml
-
pep8 --exclude test_main.py fastkml
-
coverage run --source=fastkml setup.py test
-
coverage run --source=fastkml setup.py test
-
cd docs && make html
# Python 3.2 Sphinx / Jinja throws a Syntax Error while parsing the docs
-
if [[ $TRAVIS_PYTHON_VERSION != 3.2 ]]; then cd docs && make html; fi
after_success
:
after_success
:
coveralls
coveralls
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment