File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -108,14 +108,14 @@ jobs:
108108 env :
109109 CXXFLAGS : " -std=c++17"
110110 run : |
111- meson setup build --prefix=$PWD/install
111+ meson setup build --prefix=$PWD/install --wipe
112112 meson compile -C build
113113 meson install -C build
114- export PYTHONPATH=$PWD/install/lib/python${{ matrix.python-version }}/site-packages:$PYTHONPATH
115114
116115 - name : Run tests
117116 run : |
118- pytest --import-mode=importlib
117+ cd /tmp
118+ PYTHONPATH=$GITHUB_WORKSPACE/install/lib/python${{ matrix.python-version }}/site-packages pytest --import-mode=importlib pydatastructs
119119
120120 - name : Build Documentation
121121 run : |
@@ -156,14 +156,14 @@ jobs:
156156 MACOSX_DEPLOYMENT_TARGET : 11.0
157157 CXXFLAGS : " -std=c++17"
158158 run : |
159- meson setup build --prefix=$PWD/install
159+ meson setup build --prefix=$PWD/install --wipe
160160 meson compile -C build
161161 meson install -C build
162- export PYTHONPATH=$PWD/install/lib/python${{ matrix.python-version }}/site-packages:$PYTHONPATH
163162
164163 - name : Run tests
165164 run : |
166- pytest --import-mode=importlib
165+ cd /tmp
166+ PYTHONPATH=$GITHUB_WORKSPACE/install/lib/python${{ matrix.python-version }}/site-packages pytest --import-mode=importlib pydatastructs
167167
168168 - name : Build Documentation
169169 run : |
You can’t perform that action at this time.
0 commit comments