Commit 289e8f29 authored by nd-02110114's avatar nd-02110114
Browse files

💚 fix ci build

parent 26e5ba22
Loading
Loading
Loading
Loading

devtools/run_docs_build.sh

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
#!/bin/bash -e

if [ $TRAVIS_PYTHON_VERSION == '3.7' ]; then
  cd docs && pip install -r requirements.txt;
  make clean html && cd ..;
fi

devtools/run_doctest.sh

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
#!/bin/bash -e

if [ $TRAVIS_PYTHON_VERSION == '3.7' ]; then
  find ./deepchem -name "*.py" ! -name '*load_dataset_template.py' | xargs python -m doctest -v;
fi