Skip to content

Commit 141d3de

Browse files
committed
Update travis and coverage
1 parent c287aea commit 141d3de

File tree

3 files changed

+8
-53
lines changed

3 files changed

+8
-53
lines changed

.coveragerc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@ branch = True
44
source =
55
superlists
66
lists
7-
tests
7+
8+
omit =
9+
*/admin.py
10+
*/wsgi.py
11+

.gitignore

Lines changed: 2 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#
2+
.coverage
23
.pytest_cache/
34
venv/
45
../.vagrant
@@ -7,52 +8,4 @@ db.sqlite3
78
__pycache__
89
*.pyc
910
*.pem
10-
.cache
11-
12-
# Created by .ignore support plugin (hsz.mobi)
13-
### JetBrains template
14-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
15-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
16-
17-
# User-specific stuff:
18-
.idea/workspace.xml
19-
.idea/tasks.xml
20-
.idea/dictionaries
21-
.idea/vcs.xml
22-
.idea/jsLibraryMappings.xml
23-
24-
# Sensitive or high-churn files:
25-
.idea/dataSources.ids
26-
.idea/dataSources.xml
27-
.idea/dataSources.local.xml
28-
.idea/sqlDataSources.xml
29-
.idea/dynamic.xml
30-
.idea/uiDesigner.xml
31-
32-
# Gradle:
33-
.idea/gradle.xml
34-
.idea/libraries
35-
36-
# Mongo Explorer plugin:
37-
.idea/mongoSettings.xml
38-
39-
## File-based project format:
40-
*.iws
41-
42-
## Plugin-specific files:
43-
44-
# IntelliJ
45-
/out/
46-
47-
# mpeltonen/sbt-idea plugin
48-
.idea_modules/
49-
50-
# JIRA plugin
51-
atlassian-ide-plugin.xml
52-
53-
# Crashlytics plugin (for Android Studio and IntelliJ)
54-
com_crashlytics_export_strings.xml
55-
crashlytics.properties
56-
crashlytics-build.properties
57-
fabric.properties
58-
11+
.cache

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@ addons:
1313
chrome: stable
1414
before_install:
1515
# Install ChromeDriver (64bits; replace 64 with 32 for 32bits).
16-
- wget -N http://chromedriver.storage.googleapis.com/2.30/chromedriver_linux64.zip -P ~/
16+
- wget -N http://chromedriver.storage.googleapis.com/2.38/chromedriver_linux64.zip -P ~/
1717
- unzip ~/chromedriver_linux64.zip -d ~/
1818
- rm ~/chromedriver_linux64.zip
1919
- sudo mv -f ~/chromedriver /usr/local/share/
2020
- sudo chmod +x /usr/local/share/chromedriver
2121
- sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
22-
- # start your web application and listen on `localhost`
23-
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
2422

2523
install:
2624
- pip install -r requirements-tests.txt

0 commit comments

Comments
 (0)