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

PR: Try to decrease timeouts when running tests and check general tests robustness and speed (CI/Testing) #22077

Merged
merged 31 commits into from
May 31, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1812f6e
CI/Testing: Try to decrease timeouts when running tests
dalthviz May 13, 2024
a0d8804
Update manager: Add worker error validation to prevent failing test i…
dalthviz May 14, 2024
815e2f5
CI/Testing: Decrease IPython Console tests run percentage on Windows
dalthviz May 14, 2024
9b1ce5f
Editor/Help: Remove intermediate 'connect_to_oi' config
dalthviz May 14, 2024
383c58a
CI/Testing: Close main window when testing tours dialog
dalthviz May 14, 2024
123be08
Merge branch 'master' into test_fixes
dalthviz May 20, 2024
1c7a905
CI/Testing: Further decrease IPython Console tests run percentage on …
dalthviz May 20, 2024
4437ded
Plots/Testing: Add handling for RuntimeErrors with timers and add ext…
dalthviz May 20, 2024
bc83fe5
Editor/Testing: Ensure independent editorwindows are closed when clos…
dalthviz May 21, 2024
fe0fcf7
Updates/Testing: Fix HTTPError - 403 handling logic over tests
dalthviz May 21, 2024
33e4c0d
Merge branch 'master' into test_fixes
dalthviz May 22, 2024
903f37d
CI/Testing: Prevent error when trying to get focus widget from boiler…
dalthviz May 22, 2024
ab27c9d
Testing
dalthviz May 22, 2024
61ace9a
Merge branch 'master' into test_fixes
dalthviz May 23, 2024
a0d540d
Testing
dalthviz May 23, 2024
9209829
Testing
dalthviz May 24, 2024
cea0cba
Testing
dalthviz May 24, 2024
8e7115f
Merge branch 'master' into test_fixes
dalthviz May 27, 2024
9faf4ab
Testing
dalthviz May 27, 2024
00013d0
Testing
dalthviz May 28, 2024
000742e
Testing
dalthviz May 28, 2024
ab766d1
Testing
dalthviz May 28, 2024
a479b35
Testing
dalthviz May 29, 2024
29a683a
Testing
dalthviz May 29, 2024
a8da62f
Testing
dalthviz May 30, 2024
d07029f
Remove unused imports
dalthviz May 30, 2024
824969f
Apply suggestions from code review
dalthviz May 30, 2024
89f1a24
Testing: Add missing imports
dalthviz May 30, 2024
5b9b3bb
Plots: Remove try/except for RuntimeError
dalthviz May 30, 2024
2a740a9
Apply suggestions from code review
dalthviz May 30, 2024
f4631c0
CI/Testing: Wait for window to be fully up in some tests
dalthviz May 30, 2024
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
Prev Previous commit
Next Next commit
Testing
  • Loading branch information
dalthviz committed May 28, 2024
commit 000742ee664f1f187164b466b757fc5f9ac1bffe
2 changes: 1 addition & 1 deletion spyder/plugins/editor/tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def test_toggle_eol_chars(editor_plugin, python_files, qtbot, os_name):
assert get_eol_chars(text) == get_eol_chars_from_os_name(os_name)


@flaky(max_runs=6)
@pytest.mark.order(1)
@pytest.mark.parametrize('os_name', ['nt', 'mac', 'posix'])
def test_save_with_preferred_eol_chars(editor_plugin, python_files, qtbot,
os_name):
Expand Down
Loading