Skip to content

Commit 5c7baa2

Browse files
committed
TST #137 travis
1 parent e754616 commit 5c7baa2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ before_script:
2424
- which pip
2525
- which python
2626
- which conda
27+
- pip install -r requirements.txt
2728
- pip install -r requirements-dev.txt
2829
- conda list
2930
- python --version
3031
- which coveralls
3132

32-
install:
33-
- pip install -r requirements.txt
33+
# install:
34+
# - pip install -r requirements.txt
3435

3536
# command to run tests
3637
script:

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
versioneer
22
coverage
33
coveralls
4-
pyRestTable

tests/test_filewriter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ def test_newfile_exists(self):
142142
write_stream(specwriter, self.db["tune_mr"])
143143
self.assertTrue(os.path.exists(testfile), "data file created")
144144

145+
raised = False
145146
try:
146147
specwriter.newfile(filename=testfile)
147-
raised = False
148148
except ValueError:
149149
raised = True
150150
finally:

0 commit comments

Comments
 (0)