Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Python 3.7 to Travis-CI tests #82

Merged
merged 3 commits into from
Oct 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: python
sudo: false
python: "3.6"

branches:
Expand Down Expand Up @@ -30,7 +31,14 @@ jobs:
env:
- CODECOV="--cov mdbenchmark"
- PYTEST_COV="pytest-cov codecov"
- name: "Python 3.5"
-
name: "Python 3.7"
language: python
python: 3.7
dist: xenial
sudo: true
-
name: "Python 3.5"
python: "3.5"
- name: "Python 2.7"
python: "2.7"
Expand Down Expand Up @@ -74,7 +82,7 @@ jobs:

install:
- $UPGRADE_PIP
- pip install . -v $PYTEST_COV
- pip install . $PYTEST_COV

script:
- pytest $CODECOV
Expand Down
4 changes: 2 additions & 2 deletions mdbenchmark/mdengines/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
from .namd import analyze_namd_file

FILES_TO_KEEP = {
"gromacs": [".*/bench\.job", ".*\.tpr", ".*\.mdp"],
"namd": [".*/bench\.job", ".*\.namd", ".*\.psf", ".*\.pdb"],
"gromacs": [".*/bench.job", ".*.tpr", ".*.mdp"],
"namd": [".*/bench.job", ".*.namd", ".*.psf", ".*.pdb"],
}

PARSE_ENGINE = {
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def get_property(prop, project):
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
Expand Down