Home
last modified time | relevance | path

Searched refs:flaky (Results 1 – 25 of 2166) sorted by relevance

12345678910>>...87

/dports/devel/py-flaky/flaky-3.7.0/
H A DREADME.rst1 flaky chapter
24 Marking tests flaky
27 To mark a test as flaky, simply import flaky and decorate the test with @flaky:
31 from flaky import flaky
35 @flaky
55 Marking a class flaky argument
62 @flaky
94 @flaky
131 pytest -p no:flaky
149 Pass ``--force-flaky`` to treat all tests as flaky.
[all …]
H A DPKG-INFO2 Name: flaky
9 Description: flaky
32 Marking tests flaky
35 To mark a test as flaky, simply import flaky and decorate the test with @flaky:
39 from flaky import flaky
43 @flaky
63 Marking a class flaky
66 In addition to marking a single test flaky, entire test cases can be marked flaky:
70 @flaky
102 @flaky
[all …]
/dports/devel/py-flaky/flaky-3.7.0/flaky.egg-info/
H A DPKG-INFO2 Name: flaky
9 Description: flaky
32 Marking tests flaky
35 To mark a test as flaky, simply import flaky and decorate the test with @flaky:
39 from flaky import flaky
43 @flaky
63 Marking a class flaky
66 In addition to marking a single test flaky, entire test cases can be marked flaky:
70 @flaky
102 @flaky
[all …]
/dports/devel/py-flaky/flaky-3.7.0/test/test_pytest/
H A Dtest_pytest_example.py10 from flaky import flaky
16 @flaky
28 @flaky
46 @flaky(3, 2)
56 @flaky(3, 2)
66 @flaky(2, 2)
74 @flaky()
80 @flaky
94 @flaky
140 @flaky
[all …]
H A Dtest_pytest_options_example.py9 from flaky import flaky
22 @flaky(3, 1)
34 @flaky(3, 1)
/dports/devel/py-flaky/flaky-3.7.0/flaky/
H A D_flaky_plugin.py8 from flaky import defaults
9 from flaky.names import FlakyNames
10 from flaky.utils import ensure_unicode_string
97 max_runs = flaky[FlakyNames.MAX_RUNS]
245 flaky[FlakyNames.CURRENT_RUNS] += 1
540 def _has_flaky_test_failed(cls, flaky): argument
555 flaky[FlakyNames.MAX_RUNS],
556 flaky[FlakyNames.CURRENT_RUNS],
557 flaky[FlakyNames.MIN_PASSES],
566 def _has_flaky_test_succeeded(flaky): argument
[all …]
/dports/devel/py-flaky/flaky-3.7.0/test/test_nose/
H A Dtest_nose_example.py10 from flaky import flaky
28 @flaky(3, 2)
39 @flaky(3, 2)
48 @flaky(2, 2)
53 @flaky()
59 @flaky
81 @flaky
H A Dtest_nose_options_example.py7 from flaky import flaky
28 @flaky(3, 1)
41 @flaky(3, 1)
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/server/
H A Dtest_callbacks__server.py22 from flaky import flaky
76 @flaky(max_runs=10)
87 @flaky(max_runs=10)
98 @flaky(max_runs=10)
111 @flaky(max_runs=10)
119 @flaky(max_runs=10)
127 @flaky(max_runs=10)
135 @flaky(max_runs=10)
145 @flaky(max_runs=10)
153 @flaky(max_runs=10)
[all …]
/dports/devel/py-celery/celery-4.4.7/t/integration/
H A Dtest_canvas.py37 @flaky
44 @flaky
51 @flaky
60 @flaky
69 @flaky
80 @flaky
94 @flaky
99 @flaky
104 @flaky
115 @flaky
[all …]
H A Dtest_tasks.py15 flaky = pytest.mark.flaky(reruns=5, reruns_delay=2) variable
20 @flaky
31 @flaky
37 @flaky
42 @flaky
47 @flaky
/dports/devel/py-flaky/flaky-3.7.0/test/
H A Dtest_flaky_decorator.py7 from flaky.flaky_decorator import flaky
8 from flaky.names import FlakyNames
17 lambda: flaky(min_passes=0)(test_something),
25 lambda: flaky(max_runs=2, min_passes=3)(test_something),
32 @flaky(max_runs, min_passes)
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/pipenv/tests/integration/
H A Dtest_install_markers.py10 from flaky import flaky
17 @flaky
40 @flaky
62 @flaky
83 @flaky
108 @flaky
128 @flaky
H A Dtest_install_basic.py9 from flaky import flaky
30 @flaky
57 @flaky
75 @flaky
101 @flaky
122 @flaky
139 @flaky
157 @flaky
174 @flaky
H A Dtest_install_uri.py3 from flaky import flaky
10 @flaky
27 @flaky
43 @flaky
65 @flaky
84 @flaky
/dports/devel/py-spyder/spyder-3.2.7/spyder/plugins/tests/
H A Dtest_ipythonconsole.py15 from flaky import flaky
115 @flaky(max_runs=3)
139 @flaky(max_runs=3)
161 @flaky(max_runs=3)
178 @flaky(max_runs=3)
194 @flaky(max_runs=3)
212 @flaky(max_runs=3)
232 @flaky(max_runs=3)
250 @flaky(max_runs=3)
267 @flaky(max_runs=3)
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/pytest/doc/en/
H A Dflaky.rst7 Why flaky tests are a problem
19flaky test indicates that the test relies on some system state that is not being appropriately con…
23 …st is failing to clean up after itself and leaving behind data which causes the flaky test to fail.
24 - The flaky test is reliant on data from a previous test that doesn't clean up after itself, and in…
55 * `flaky <https://github.com/box/flaky>`_
58 …/ESSS/pytest-replay>`_: This plugin helps to reproduce locally crashes or flaky tests observed dur…
97 … a feature to `identify flaky tests <https://docs.microsoft.com/en-us/azure/devops/release-notes/2…
115 * `No more flaky tests on the Go team <https://www.thoughtworks.com/insights/blog/no-more-flaky-tes…
121 …cs.microsoft.com/en-us/azure/devops/learn/devops-at-microsoft/eliminating-flaky-tests>`_ blog and …
125 …* `Flaky Tests at Google and How We Mitigate Them <https://testing.googleblog.com/2016/05/flaky-te…
[all …]
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/pytest/doc/en/
H A Dflaky.rst7 Why flaky tests are a problem
19flaky test indicates that the test relies on some system state that is not being appropriately con…
23 …st is failing to clean up after itself and leaving behind data which causes the flaky test to fail.
24 - The flaky test is reliant on data from a previous test that doesn't clean up after itself, and in…
55 * `flaky <https://github.com/box/flaky>`_
58 …/ESSS/pytest-replay>`_: This plugin helps to reproduce locally crashes or flaky tests observed dur…
97 … a feature to `identify flaky tests <https://docs.microsoft.com/en-us/azure/devops/release-notes/2…
115 * `No more flaky tests on the Go team <https://www.thoughtworks.com/insights/blog/no-more-flaky-tes…
121 …cs.microsoft.com/en-us/azure/devops/learn/devops-at-microsoft/eliminating-flaky-tests>`_ blog and …
125 …* `Flaky Tests at Google and How We Mitigate Them <https://testing.googleblog.com/2016/05/flaky-te…
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/pytest/doc/en/
H A Dflaky.rst7 Why flaky tests are a problem
19flaky test indicates that the test relies on some system state that is not being appropriately con…
23 …st is failing to clean up after itself and leaving behind data which causes the flaky test to fail.
24 - The flaky test is reliant on data from a previous test that doesn't clean up after itself, and in…
55 * `flaky <https://github.com/box/flaky>`_
58 …/ESSS/pytest-replay>`_: This plugin helps to reproduce locally crashes or flaky tests observed dur…
97 … a feature to `identify flaky tests <https://docs.microsoft.com/en-us/azure/devops/release-notes/2…
115 * `No more flaky tests on the Go team <https://www.thoughtworks.com/insights/blog/no-more-flaky-tes…
121 …cs.microsoft.com/en-us/azure/devops/learn/devops-at-microsoft/eliminating-flaky-tests>`_ blog and …
125 …* `Flaky Tests at Google and How We Mitigate Them <https://testing.googleblog.com/2016/05/flaky-te…
[all …]
/dports/devel/py-flaky/flaky-3.7.0/test/test_pytest/pytest_generate_example/
H A Dtest_pytest_generate_example.py4 from flaky import flaky
7 @flaky
16 @flaky
/dports/devel/py-pytest/pytest-4.6.11/doc/en/
H A Dflaky.rst7 Why flaky tests are a problem
19flaky test indicates that the test relies on some system state that is not being appropriately con…
23 …st is failing to clean up after itself and leaving behind data which causes the flaky test to fail.
24 - The flaky test is reliant on data from a previous test that doesn't clean up after itself, and in…
54 * `flaky <https://github.com/box/flaky>`_
57 …/ESSS/pytest-replay>`_: This plugin helps to reproduce locally crashes or flaky tests observed dur…
96 … a feature to `identify flaky tests <https://docs.microsoft.com/en-us/azure/devops/release-notes/2…
114 * `No more flaky tests on the Go team <https://www.thoughtworks.com/insights/blog/no-more-flaky-tes…
120 …cs.microsoft.com/en-us/azure/devops/learn/devops-at-microsoft/eliminating-flaky-tests>`_ blog and …
124 …* `Flaky Tests at Google and How We Mitigate Them <https://testing.googleblog.com/2016/05/flaky-te…
[all …]
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/io/
H A Dtest_export.py21 from flaky import flaky
55 @flaky(max_runs=10)
80 @flaky(max_runs=10)
114 @flaky(max_runs=10)
124 @flaky(max_runs=10)
134 @flaky(max_runs=10)
152 @flaky(max_runs=10)
181 @flaky(max_runs=10)
191 @flaky(max_runs=10)
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/k8s.io/utils/utils-c2654d5206da/io/
H A Dconsistentread_test.go28 func writeToPipe(namedPipe string, flaky bool, i int) {
38 if flaky {
58 func writer(namedPipe string, flaky bool, c <-chan int, d <-chan bool) {
61 writeToPipe(namedPipe, flaky, -1)
66 writeToPipe(namedPipe, flaky, i)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/web_tests/models/
H A Dtest_run_results_unittest.py115 if flaky:
206 summary = summarized_results(self.port, expected=False, passing=False, flaky=False)
210 summary = summarized_results(self.port, expected=False, passing=False, flaky=False)
221 summary = summarized_results(self.port, expected=True, passing=False, flaky=False)
232 summary = summarized_results(self.port, expected=False, passing=True, flaky=False)
245 summary = summarized_results(self.port, expected=False, passing=False, flaky=False)
251 summary = summarized_results(self.port, expected=False, passing=True, flaky=False)
261 summary = summarized_results(self.port, expected=False, passing=False, flaky=False)
270 summary = summarized_results(self.port, expected=False, passing=True, flaky=False)
290 summary = summarized_results(self.port, expected=False, passing=True, flaky=False)
[all …]
/dports/net/py-kombu/kombu-4.6.11/t/integration/
H A Dtest_py_amqp.py52 @pytest.mark.flaky(reruns=5, reruns_delay=2)
58 @pytest.mark.flaky(reruns=5, reruns_delay=2)
64 @pytest.mark.flaky(reruns=5, reruns_delay=2)
70 @pytest.mark.flaky(reruns=5, reruns_delay=2)
76 @pytest.mark.flaky(reruns=5, reruns_delay=2)

12345678910>>...87