Skip to content

Commit ee2faed

Browse files
committed
WIP: Run the problematic pytests
1 parent f5e6d4e commit ee2faed

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@ language: python
22
dist: xenial # required for Python >= 3.7
33
python: 3.7
44
cache: pip
5+
matrix:
6+
include:
7+
- script: pytest --doctest-modules data_structures/stacks/balanced_parentheses.py
8+
- script: pytest --doctest-modules data_structures/stacks/infix_to_postfix_conversion.py
9+
- script: pytest --doctest-modules file_transfer_protocol/ftp_send_receive.py
10+
- script: pytest --doctest-modules file_transfer_protocol/ftp_client_server.py
11+
- script: pytest --doctest-modules machine_learning/linear_regression.py
12+
- script: pytest --doctest-modules machine_learning/perceptron.py
13+
- script: pytest --doctest-modules machine_learning/random_forest_classification/random_forest_classification.py
14+
- script: pytest --doctest-modules machine_learning/random_forest_regression/random_forest_regression.py
15+
- script: pytest --doctest-modules maths/abs_min.py
16+
- script: pytest --doctest-modules maths/binary_exponentiation.py
17+
- script: pytest --doctest-modules maths/lucas_series.py
18+
- script: pytest --doctest-modules maths/sieve_of_eratosthenes.py
19+
520
before_install: pip install --upgrade pip setuptools
621
install: pip install -r requirements.txt
722
before_script:

0 commit comments

Comments
 (0)