Unverified Commit 3cf073f1 authored by Nathan Frey's avatar Nathan Frey Committed by GitHub
Browse files

Merge branch 'master' into normalizing_flows

parents 5bcff26e 1cbafde0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -32,18 +32,18 @@ install:
  - conda update -q conda
  - bash scripts/install_deepchem_conda.sh cpu
  - conda activate deepchem
  - python setup.py install
  - pip install -e .
script:
  - bash devtools/run_yapf.sh
  - bash devtools/run_flake8.sh
  - mypy -p deepchem
  - pytest -m "not slow" --cov=deepchem deepchem
  - pytest -v -m "not slow" --cov=deepchem deepchem
  - if [ $TRAVIS_PYTHON_VERSION == '3.7' ]; then
      cd docs && pip install -r requirements.txt;
      make clean html && cd ..;
    fi
  - if [ $TRAVIS_PYTHON_VERSION == '3.7' ]; then
      find ./deepchem -name "*.py" ! -name '*load_dataset_template.py' | xargs python -m doctest -v;
      pytest -v --ignore-glob='deepchem/**/test*.py' --doctest-modules deepchem;
    fi
after_success:
  - echo $TRAVIS_SECURE_ENV_VARS
+2 −0
Original line number Diff line number Diff line
"""
Gathers all datasets in one place for convenient imports
"""
# flake8: noqa

# TODO(rbharath): Get rid of * import
from deepchem.data.datasets import pad_features
from deepchem.data.datasets import pad_batch
+189 −193

File changed.

Preview size limit exceeded, changes collapsed.

+743 −443

File changed.

Preview size limit exceeded, changes collapsed.

+63 −40

File changed.

Preview size limit exceeded, changes collapsed.

Loading