Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

update develop from master #21

Merged
merged 14 commits into from
Mar 12, 2018
Prev Previous commit
Next Next commit
second attempt!
  • Loading branch information
mroberge committed Mar 10, 2018
commit cb0d29c290adebbc8b28ded2c5da78aeb97682e1
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
test_requirements = [
# 'pytest'
# 'nose2' doesn't add any extra functionality for me right now.
# Recommended that I use this line to avoid errors in TravisCI
# See https://matplotlib.org/faq/howto_faq.html
# Basically, matplotlib usually uses an 'X11 connection' by default; Travis CI
# does not have this configured, so you need to set your backend explicitly.
matplotlib.use('Agg')
]

setup(
Expand Down
5 changes: 0 additions & 5 deletions tests/test_charts.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
from __future__ import absolute_import, print_function
import unittest
import matplotlib
# Recommended that I use this line to avoid errors in TravisCI
# See https://matplotlib.org/faq/howto_faq.html
# Basically, matplotlib usually uses an 'X11 connection' by default; Travis CI
# does not have this configured, so you need to set your backend explicitly.
matplotlib.use('Agg')
import pandas as pd

from hydrofunctions import charts
Expand Down