File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,21 @@ language: python
2
2
dist : xenial # required for Python >= 3.7
3
3
python : 3.7
4
4
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
+
5
20
before_install : pip install --upgrade pip setuptools
6
21
install : pip install -r requirements.txt
7
22
before_script :
You can’t perform that action at this time.
0 commit comments