Skip to content

Commit

Permalink
Monitoring: test pandas under all supported Python versions (#5858)
Browse files Browse the repository at this point in the history
* Test pandas support under all Python versions.

* Declare full support for Python 3.7.

Closes #5293.
  • Loading branch information
tseaver authored Aug 29, 2018
1 parent de69735 commit 10e72aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion monitoring/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def unit(session, py):

# Install all test dependencies, then install this package in-place.
session.install('pytest', 'mock')
session.install('-e', '.')
session.install('-e', '.[pandas]')

# Run py.test against the unit tests.
session.run('py.test', '--quiet', os.path.join('tests', 'unit'))
Expand Down
1 change: 1 addition & 0 deletions monitoring/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Topic :: Internet',
],
Expand Down

0 comments on commit 10e72aa

Please sign in to comment.