Skip to content

Commit 1bca6b2

Browse files
Move dpctl_ext/tests into dpnp/tests
1 parent be72615 commit 1bca6b2

95 files changed

Lines changed: 194 additions & 497 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.flake8

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ exclude =
5858
conda.recipe,
5959
dpnp/tests/*.py,
6060
tests_external/*.py,
61-
dpctl_ext/tests/*.py,
6261

6362
# Print detailed statistic if any issue detected
6463
count = True

conda-recipe/run_test.bat

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,3 @@ if %errorlevel% neq 0 exit 1
3939

4040
"%PYTHON%" -m pytest -ra --pyargs dpnp
4141
if %errorlevel% neq 0 exit 1
42-
43-
"%PYTHON%" -m pytest -ra --pyargs dpctl_ext
44-
if %errorlevel% neq 0 exit 1

conda-recipe/run_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@ set -e
3838
$PYTHON -c "import dpnp; print(dpnp.__version__)"
3939
$PYTHON -m dpctl -f
4040
$PYTHON -m pytest -ra --pyargs dpnp
41-
$PYTHON -m pytest -ra --pyargs dpctl_ext

dpctl_ext/CMakeLists.txt

Lines changed: 0 additions & 202 deletions
This file was deleted.

dpctl_ext/tensor/include/dlpack/README.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

dpctl_ext/tests/__init__.py

Lines changed: 0 additions & 37 deletions
This file was deleted.
File renamed without changes.

dpctl_ext/tests/tensor/elementwise/test_abs.py renamed to dpnp/tests/tensor/elementwise/test_abs.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@
2929
import itertools
3030
import warnings
3131

32-
import numpy as np
33-
import pytest
34-
3532
# TODO: revert to `import dpctl.tensor...`
3633
# when dpnp fully migrates dpctl/tensor
3734
import dpctl_ext.tensor as dpt
35+
import numpy as np
36+
import pytest
3837

3938
from ..helper import (
4039
get_queue_or_skip,

0 commit comments

Comments
 (0)