Skip to content

Commit 15c69c8

Browse files
committed
Travis CI: Run each failing pytest in ; || true mode
1 parent ea886b9 commit 15c69c8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ script:
2121
--ignore=machine_learning/random_forest_regression/random_forest_regression.py
2222
# The following files currently fail pytests. See issues: #1016, #1044, #1080
2323
# 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
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
2727
# ftp_client_server.py currently hangs until Travis CI times out (10+ minutes)
28-
# - pytest file_transfer_protocol/ftp_client_server.py --doctest-modules || true
29-
- pytest machine_learning/linear_regression.py --doctest-modules || true
30-
- pytest machine_learning/random_forest_classification/random_forest_classification.py --doctest-modules || true
31-
- pytest machine_learning/random_forest_regression/random_forest_regression.py --doctest-modules || true
28+
# - pytest file_transfer_protocol/ftp_client_server.py --doctest-modules ; || true
29+
- pytest machine_learning/linear_regression.py --doctest-modules ; || true
30+
- pytest machine_learning/random_forest_classification/random_forest_classification.py --doctest-modules ; || true
31+
- pytest machine_learning/random_forest_regression/random_forest_regression.py --doctest-modules ; || true
3232

3333
after_success:
3434
- scripts/build_directory_md.py > DIRECTORY.md

0 commit comments

Comments
 (0)