Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Troubleshooting] [BUGFIX] Troubleshooting the "slow" tests group in Azure DevOps CI. #3748

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ae64e54
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
5b955fc
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
531b61a
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
922aa2c
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
b340cf2
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
5f75073
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
c069b2b
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 20, 2023
521d93e
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 21, 2023
321eec0
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 21, 2023
afb35bf
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 21, 2023
e7b8cd4
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 21, 2023
70bb60c
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
003634a
Empty test commit (to enable tests to run).
alexsherstinsky Oct 22, 2023
713e80b
Empty test commit (to enable tests to run).
alexsherstinsky Oct 22, 2023
7fcd88e
Empty test commit (to enable tests to run).
alexsherstinsky Oct 22, 2023
7787ccf
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
6539e7c
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
3e4af3d
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
29d8dec
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
24a4ad7
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
c88b87f
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
3b269f2
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 22, 2023
23e2356
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 23, 2023
7271b7c
Merge branch 'master' into bugfix/ISSUE-3734/alexsherstinsky/tests/in…
alexsherstinsky Oct 23, 2023
f9a605c
Empty commit (to cause tests in CI to run).
alexsherstinsky Oct 23, 2023
21368d6
Troubleshooting the "slow" tests group in Azure DevOps CI.
alexsherstinsky Oct 23, 2023
9a93935
merge
alexsherstinsky Oct 26, 2023
8b205e1
experiments with slow tests
alexsherstinsky Oct 27, 2023
0d4fe5d
Merge remote-tracking branch 'origin/bugfix/ISSUE-3734/alexsherstinsk…
alexsherstinsky Nov 2, 2023
aa0781f
Merge branch 'master' of github.com:ludwig-ai/ludwig into bugfix/ISSU…
justinxzhao Nov 28, 2023
7acd4f9
Remove Alex TODOs.
justinxzhao Nov 29, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- python-version: "3.9"
pytorch-version: 2.1.1
torchscript-version: 1.10.2
ray-version: 2.3.0
ray-version: 2.3.1
- python-version: "3.10"
pytorch-version: nightly
torchscript-version: 1.10.2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pytest_slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
python-version: [3.8]
test-markers: ["slow"]
include:
- python-version: 3.8
pytorch-version: 2.0.0
- python-version: "3.9"
pytorch-version: 2.1.0
torchscript-version: 1.10.2
ray-version: 2.3.1
env:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
env:
TRANSFORMERS_CACHE: "/root/huggingface_cache"
run: |
RUN_PRIVATE=1 LUDWIG_TEST_SUITE_TIMEOUT_S=6000 pytest -vs --timeout 450 --durations 100 -m "($MARKERS) and (not $EXCLUDED_MARKERS)" --junitxml pytest_slow.xml tests
RUN_PRIVATE=1 LUDWIG_TEST_SUITE_TIMEOUT_S=6000 pytest -vs --timeout 600 --durations 100 -m "($MARKERS) and (not $EXCLUDED_MARKERS)" --junitxml pytest_slow.xml tests

- name: Upload Unit Test Results
if: ${{ always() && !env.ACT }}
Expand Down
Loading