Commit 868677b5 authored by nd-02110114's avatar nd-02110114
Browse files

🔧 aggregate config

parent 6e7cdafb
Loading
Loading
Loading
Loading

.style.yapf

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
[style]
based_on_style = google
indent_width = 2
+4 −4
Original line number Diff line number Diff line
@@ -33,14 +33,14 @@ install:
  - bash scripts/install_deepchem_conda.sh deepchem
  - conda activate deepchem
  - python setup.py install
  - pip install coveralls mypy yapf==0.22.0
  - pip install coveralls mypy flake8 yapf==0.22.0

script:
  - pytest -m "not slow" --cov=deepchem deepchem
  - pytest --cov=deepchem deepchem
  - bash devtools/run_doctest.sh
  - mypy -p deepchem --ignore-missing-imports
  - bash devtools/run_docs_build.sh
  - mypy -p deepchem
  - bash devtools/run_format_code.sh
  - bash devtools/run_docs_build.sh

after_success:
  - echo $TRAVIS_SECURE_ENV_VARS
+15 −0
Original line number Diff line number Diff line
@@ -2,3 +2,14 @@
markers =
    slow: marks tests as slow (deselect with '-m "not slow"')
    serial

[mypy]
ignore_missing_imports = True

[flake8]
ignore = E111, E114
max-line-length = 300

[yapf]
based_on_style = google
indent_width = 2