Skip to content

Commit 2db7fe3

Browse files
Prerak SinghPrerak Singh
authored andcommitted
bug fix
1 parent a4f1572 commit 2db7fe3

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,11 @@ jobs:
108108
env:
109109
CXXFLAGS: "-std=c++17"
110110
run: |
111-
python -m pip install . -v
111+
python -m pip install --no-build-isolation -e . -v
112112
113113
- name: Run tests
114114
run: |
115-
cd $HOME
116-
python -m pytest --pyargs pydatastructs -v
115+
python -m pytest pydatastructs/ -v
117116
118117
- name: Build Documentation
119118
run: |
@@ -154,12 +153,11 @@ jobs:
154153
MACOSX_DEPLOYMENT_TARGET: 11.0
155154
CXXFLAGS: "-std=c++17"
156155
run: |
157-
python -m pip install . -v
156+
python -m pip install --no-build-isolation -e . -v
158157
159158
- name: Run tests
160159
run: |
161-
cd $HOME
162-
python -m pytest --pyargs pydatastructs -v
160+
python -m pytest pydatastructs/ -v
163161
164162
- name: Build Documentation
165163
run: |

0 commit comments

Comments
 (0)