mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
81ae5adcc8
* Update binary_search_tree.py remove some bugs * Update binary_search_tree.py * Update binary_search_tree.py * Update binary_search_tree.py * Update binary_search_tree.py * Update binary_search_tree.py * Update binary_search_tree.py * testlist = (8, 3, 6, 1, 10, 14, 13, 4, 7) * Update .travis.yml Co-authored-by: Christian Clauss <cclauss@me.com>
16 lines
601 B
YAML
16 lines
601 B
YAML
language: python
|
|
python: 3.7
|
|
cache: pip
|
|
before_install: pip install --upgrade pip setuptools
|
|
install: pip install -r requirements.txt
|
|
before_script:
|
|
- black --check . || true
|
|
- flake8 . --count --select=E101,E9,F4,F63,F7,F82,W191 --show-source --statistics
|
|
- flake8 . --count --exit-zero --max-line-length=127 --statistics
|
|
script:
|
|
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
|
|
- mypy --ignore-missing-imports .
|
|
- pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=. .
|
|
after_success:
|
|
- scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
|