mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
d72586c5f4
* Added print function into matrix_multiplication_addition.py and removed blank space in data_structures/binary tree directory * Removed .vs/ folder per #893 * Rename matrix_multiplication_addition.py to matrix_operation.py * Moved and renamed ~script.py to scripts/build_directory_md.py Updated DIRECTORY.MD file * Modified .travis.yml per suggestion in #1013 * Fixed typo per suggestions in #1013
37 lines
950 B
YAML
37 lines
950 B
YAML
language: python
|
|
dist: xenial # required for Python >= 3.7
|
|
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=E9,F63,F7,F82 --show-source --statistics
|
|
script:
|
|
- mypy --ignore-missing-imports .
|
|
#- IGNORE="data_structures,file_transfer_protocol,graphs,machine_learning,maths,neural_network,project_euler"
|
|
#- pytest . --doctest-modules --ignore=${IGNORE}
|
|
- pytest --doctest-modules
|
|
arithmetic_analysis
|
|
backtracking
|
|
boolean_algebra
|
|
ciphers
|
|
compression
|
|
conversions
|
|
digital_image_processing
|
|
divide_and_conquer
|
|
dynamic_programming
|
|
hashes
|
|
linear_algebra_python
|
|
matrix
|
|
networking_flow
|
|
other
|
|
searches
|
|
sorts
|
|
strings
|
|
traversals
|
|
|
|
after_success:
|
|
- python scripts/build_directory_md.py
|
|
- cat DIRECTORY.md
|