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 9f6ba54 commit b4d4f32Copy full SHA for b4d4f32
scripts/build_for_develop.sh
@@ -1,19 +1,6 @@
1
#!/bin/bash
2
set +xe
3
4
-# Check if level-zero headers are installed. Currently, works only for Ubuntu.
5
-# Check https://dgpu-docs.intel.com/technologies/level-zero.html for details
6
-# about what development package should be checked for different distros.
7
-if [ -f /etc/os-release ]; then
8
- . /etc/os-release
9
- if [[ "$NAME" == "Ubuntu" ]]; then
10
- dpkg -s level-zero-dev
11
- if [[ $? == 0 ]]; then
12
- export HAS_LO_HEADERS=ON
13
- fi
14
15
-fi
16
-export CODE_COVERAGE=ON
17
python setup.py clean --all
18
-python setup.py develop
+python setup.py develop --coverage=True
19
pytest -q -ra --disable-warnings --cov dpctl --cov-report term-missing --pyargs dpctl -vv --cov-config=.coveragerc
0 commit comments