Commit 988a844e authored by nd-02110114's avatar nd-02110114
Browse files

💚 fix ci build

parent 289e8f29
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -36,11 +36,16 @@ install:
  - pip install coveralls mypy yapf==0.22.0

script:
  - pytest --cov=deepchem deepchem
  - bash devtools/run_doctest.sh
  - mypy -p deepchem
  - bash devtools/run_yapf.sh
  - bash devtools/run_docs_build.sh
  - mypy -p deepchem
  - pytest -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;
    fi

after_success:
  - echo $TRAVIS_SECURE_ENV_VARS