Skip to content

Commit

Permalink
adding backend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dfm committed Oct 17, 2017
1 parent 928fc31 commit 58391a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install:
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda info -a
conda install -c conda-forge conda-build numpy scipy setuptools pytest
conda install -c conda-forge conda-build numpy scipy h5py setuptools pytest
$env:CONDA_PREFIX = "C:\Miniconda$env:CONDA"
build_script:
- ps: python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion .ci/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ conda update -q conda
conda info -a
conda create --yes -n test python=$PYTHON_VERSION
source activate test
conda install numpy=$NUMPY_VERSION scipy setuptools pytest pytest-cov pip
conda install numpy=$NUMPY_VERSION scipy h5py setuptools pytest pytest-cov pip
pip install coveralls

# Build the extension
Expand Down
6 changes: 1 addition & 5 deletions tests/unit/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@

from __future__ import division, print_function

from itertools import product

import pytest
import numpy as np

from emcee import moves, backends, EnsembleSampler
from emcee import backends, EnsembleSampler

__all__ = ["test_hdf", "test_hdf_reload"]

Expand Down

0 comments on commit 58391a6

Please sign in to comment.