Skip to content

Commit 3ead066

Browse files
committed
Travis CI: Run each failing pytest in || true mode
1 parent a9ecdb3 commit 3ead066

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ script:
1919
--ignore=machine_learning/perceptron.py
2020
--ignore=machine_learning/random_forest_classification/random_forest_classification.py
2121
--ignore=machine_learning/random_forest_regression/random_forest_regression.py
22+
# The following files currently fail pytests. See issues: #1016, #1044, #1080
23+
# Here they are run || true and when each passes pytest, it can be removed above and below.
24+
- pytest data_structures/stacks/balanced_parentheses.py --doctest-modules || true
25+
- pytest data_structures/stacks/infix_to_postfix_conversion.py --doctest-modules || true
26+
- pytest file_transfer_protocol/ftp_send_receive.py --doctest-modules || true
27+
- pytest file_transfer_protocol/ftp_client_server.py --doctest-modules || true
28+
- pytest machine_learning/linear_regression.py --doctest-modules || true
29+
- pytest machine_learning/random_forest_classification/random_forest_classification.py --doctest-modules || true
30+
- pytest machine_learning/random_forest_regression/random_forest_regression.py --doctest-modules || true
31+
2232
after_success:
2333
- scripts/build_directory_md.py > DIRECTORY.md
2434
- cat DIRECTORY.md

0 commit comments

Comments
 (0)