Skip to content

Commit 6ad6eb9

Browse files
authored
Merge branch 'master' into dependabot/github_actions/github/codeql-action-3.28.15
2 parents 8ef89bc + 130a24a commit 6ad6eb9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This release achieves 100% compliance with Python Array API specification (revis
3131

3232
* Resolved an issue with an incorrect result returned due to missing dependency from the strided kernel on a copy event in `dpnp.erf` [#2378](https://github.com/IntelPython/dpnp/pull/2378)
3333
* Updated `conda create` commands build and install instructions of `Quick start guide` to avoid a compilation error [#2395](https://github.com/IntelPython/dpnp/pull/2395)
34+
* Added handling of empty string passed to a test env variable defining data type scope as a `False` value [#2415](https://github.com/IntelPython/dpnp/pull/2415)
3435

3536

3637
## [0.17.0] - 02/26/2025

dpnp/tests/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

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))
3+
all_int_types = bool(os.getenv("DPNP_TEST_ALL_INT_TYPES", 0))
4+
float16_types = bool(os.getenv("DPNP_TEST_FLOAT_16", 0))
5+
complex_types = bool(os.getenv("DPNP_TEST_COMPLEX_TYPES", 0))
6+
bool_types = bool(os.getenv("DPNP_TEST_BOOL_TYPES", 0))

0 commit comments

Comments
 (0)