We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab4ce8 commit f6c9a68Copy full SHA for f6c9a68
conda-recipe/meta.yaml
@@ -50,6 +50,7 @@ build:
50
test:
51
requires:
52
- pytest
53
+ - pytest-repeat
54
- setuptools
55
56
about:
conda-recipe/run_test.bat
@@ -45,7 +45,10 @@ if %errorlevel% neq 0 exit 1
45
"%PYTHON%" -m pytest -ra --pyargs dpnp.tests.test_ndarray
46
if %errorlevel% neq 0 exit 1
47
48
-"%PYTHON%" -m pytest -ra --pyargs dpnp.tests.test_usm_type
+"%PYTHON%" -m pytest --count 100 -ra -v --pyargs dpnp.tests.test_usm_type::test_2in_1out
49
+if %errorlevel% neq 0 exit 1
+
+"%PYTHON%" -m pytest -ra -v --pyargs dpnp.tests.test_usm_type
"%PYTHON%" -m pytest -ra --pyargs dpnp
0 commit comments