File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
tools/src/test/python/dlpx/virtualization/_internal Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,16 @@ jobs:
26
26
working-directory : ${{ matrix.package }}
27
27
run : |
28
28
python -m pip install --upgrade pip
29
- pip install -r requirements.txt --index-url https://pypi.org/simple --extra-index-url https:// test.pypi.org/simple
29
+ pip install -r requirements.txt --find-links https://test.pypi.org/simple/dvp-api/
30
30
31
- - name : Install ${{ matrix.package }} project in editable mode
31
+ - name : Install ${{ matrix.package }} project
32
32
working-directory : ${{ matrix.package }}
33
33
run : |
34
- pip install -e . --index-url https://pypi.org/simple --extra-index-url https:// test.pypi.org/simple
34
+ pip install . --find-links https://test.pypi.org/simple/dvp-api/
35
35
36
36
- name : Test ${{ matrix.package }} project with pytest
37
37
working-directory : ${{ matrix.package }}
38
38
run : |
39
- pip install pytest
40
39
python -m pytest src/test/python
41
40
42
41
lint :
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def test_get_engine_api_version_json():
43
43
@staticmethod
44
44
def test_get_internal_package_root ():
45
45
assert package_util .get_internal_package_root ().endswith (
46
- 'main/python/ dlpx/virtualization/_internal' )
46
+ 'dlpx/virtualization/_internal' )
47
47
48
48
@staticmethod
49
49
@pytest .mark .parametrize ('version_string' , [
You can’t perform that action at this time.
0 commit comments