Skip to content

Commit c51274a

Browse files
committed
testing only python 2.7 for now, added output to error trace
1 parent 072da26 commit c51274a

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
5-
- "3.2"
6-
- "3.3"
7-
- "3.4"
8-
- "3.5"
9-
- "3.5-dev" # 3.5 development branch
10-
- "nightly" # currently points to 3.6-dev
114
# command to install dependencies
125
install: "pip install -r setup/requirements.txt"
136
# command to run tests

test/ServerTest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ def test_request(self):
2424
self.fail("Server process is still alive, killing now...")
2525
stdout, _ = serverProc.communicate()
2626
stdout = stdout.strip()
27-
self.assertEqual(0, status, "Server exited with nonzero status: %s" % status)
27+
self.assertEqual(0, status, "Server exited with nonzero status: %s stdout: %s" % (status, stdout))
2828
self.assertEqual(test_data, stdout, "server didnt return fake oauth verifier, instead: '%s'" % stdout)

0 commit comments

Comments
 (0)