Skip to content

Commit

Permalink
TST #137 travis
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed May 10, 2019
1 parent e754616 commit 5c7baa2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ before_script:
- which pip
- which python
- which conda
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- conda list
- python --version
- which coveralls

install:
- pip install -r requirements.txt
# install:
# - pip install -r requirements.txt

# command to run tests
script:
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
versioneer
coverage
coveralls
pyRestTable
2 changes: 1 addition & 1 deletion tests/test_filewriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ def test_newfile_exists(self):
write_stream(specwriter, self.db["tune_mr"])
self.assertTrue(os.path.exists(testfile), "data file created")

raised = False
try:
specwriter.newfile(filename=testfile)
raised = False
except ValueError:
raised = True
finally:
Expand Down

0 comments on commit 5c7baa2

Please sign in to comment.