@@ -10,18 +10,9 @@ matrix:
10
10
# The following files currently fail pytests. See issues: #1016, #1044, #1080
11
11
# Here they are run allow_failures mode and when each passes pytest, it can be
12
12
# removed BOTH lists below. Complex now but simple once all files pass pytest.
13
- # - env: FILE=pytest file_transfer_protocol/ftp_client_server.py
14
- # before_script: true
15
- # script: pytest ${FILE} --doctest-modules
16
- - env : FILE=pytest file_transfer/ftp_send_receive.py
17
- before_script : true
18
- script : pytest ${FILE} --doctest-modules
19
13
- env : FILE=pytest machine_learning/linear_regression.py
20
14
before_script : true
21
15
script : pytest ${FILE} --doctest-modules
22
- - env : FILE=pytest machine_learning/perceptron.py
23
- before_script : true
24
- script : pytest ${FILE} --doctest-modules
25
16
- env : FILE=pytest machine_learning/random_forest_classification/random_forest_classification.py
26
17
before_script : true
27
18
script : pytest ${FILE} --doctest-modules
@@ -37,9 +28,7 @@ script:
37
28
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
38
29
- mypy --ignore-missing-imports .
39
30
- pytest . --doctest-modules
40
- --ignore=file_transfer/ftp_send_receive.py
41
31
--ignore=machine_learning/linear_regression.py
42
- --ignore=machine_learning/perceptron.py
43
32
--ignore=machine_learning/random_forest_classification/random_forest_classification.py
44
33
--ignore=machine_learning/random_forest_regression/random_forest_regression.py
45
34
after_success :
0 commit comments