Skip to content

Commit

Permalink
Merge pull request #3 from openseespy/travis-testing
Browse files Browse the repository at this point in the history
added travis ci file
  • Loading branch information
zhuminjie committed Apr 4, 2019
2 parents a172039 + 4ca0d26 commit 618a056
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
os:
- linux
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install codecov
- pip install pytest-cov
# command to run tests
script:
- py.test --cov=./
after_success:
- coveralls # uploads reports to coveralls.io

0 comments on commit 618a056

Please sign in to comment.