Skip to content

Commit 61e61c1

Browse files
committed
included more python packages for testing and reduced test timeout #160
1 parent 0830344 commit 61e61c1

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ os:
44
- linux
55
python:
66
- "2.7"
7-
7+
- "3.5"
8+
89
# Perform the manual steps on osx to install python3 and activate venv
910
before_install:
1011
- if [ $TRAVIS_OS_NAME == "linux" ]; then

requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
autopep8==1.2.1
2-
yapf==0.6.2
2+
yapf==0.6.2
3+
pylint==1.5.4
4+
pep8==1.7.0
5+
prospector==0.11.7
6+
flake8==2.6.0

src/test/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let testRunner = require("vscode/lib/testrunner");
1717
testRunner.configure({
1818
ui: "tdd", // the TDD UI is being used in extension.test.ts (suite, test, etc.)
1919
useColors: true, // colored output from test results
20-
timeout: 10000
20+
timeout: 5000
2121
});
2222

2323
module.exports = testRunner;

0 commit comments

Comments
 (0)