We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ed961 commit 108d2a4Copy full SHA for 108d2a4
dpnp/tests/config.py
@@ -1,6 +1,6 @@
1
import os
2
3
-all_int_types = int(os.getenv("DPNP_TEST_ALL_INT_TYPES", 0))
4
-float16_types = int(os.getenv("DPNP_TEST_FLOAT_16", 0))
5
-complex_types = int(os.getenv("DPNP_TEST_COMPLEX_TYPES", 0))
6
-bool_types = int(os.getenv("DPNP_TEST_BOOL_TYPES", 0))
+all_int_types = bool(os.getenv("DPNP_TEST_ALL_INT_TYPES", 0))
+float16_types = bool(os.getenv("DPNP_TEST_FLOAT_16", 0))
+complex_types = bool(os.getenv("DPNP_TEST_COMPLEX_TYPES", 0))
+bool_types = bool(os.getenv("DPNP_TEST_BOOL_TYPES", 0))
0 commit comments