Skip to content

Commit

Permalink
Merge pull request #13 from ACCLAB/fix-tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
josesho committed Dec 15, 2017
2 parents 0565147 + 28db4b9 commit c10e9e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ before_install:

install:
- conda update conda --yes
- conda create -n testenv --yes pip python=$PYTHON
- conda create -n testenv --yes pip python=$PYTHON matplotlib
- source activate testenv
- pip install pytest==3.3
- pip install .
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DABEST (Python)
[![Travis CI](https://travis-ci.org/ACCLAB/DABEST-python.svg?branch=master)]()
[![PyPI](https://img.shields.io/pypi/v/dabest.svg)]()
[![Travis CI](https://travis-ci.org/ACCLAB/DABEST-python.svg?branch=master)](https://travis-ci.org/ACCLAB/DABEST-python)
[![PyPI](https://img.shields.io/pypi/v/dabest.svg)](https://pypi.python.org/pypi/dabest/0.1.1)

## About

Expand Down
3 changes: 2 additions & 1 deletion dabest/tests/test_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
# Load Libraries
import numpy as np
import matplotlib as mpl
mpl.use('Agg')

import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
import pytest
from .. import api
mpl.use('Agg')

# Fixtures.
@pytest.fixture
Expand Down

0 comments on commit c10e9e9

Please sign in to comment.