Skip to content

Commit bc32726

Browse files
committed
Use pip install -e .
Without `-e`, driver is installed into site-packages, and then installed version conflicts with source. This has caused me problems many times during development, because source version doesn't work (native libraries) are not compiled. `-e` causes driver to be installed in-place, so there are no more conflicts and import issues.
1 parent bc3a862 commit bc32726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/run_integration_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pip install -U pip wheel setuptools
2323

2424
# install driver wheel
2525
pip install --ignore-installed -r test-requirements.txt pytest
26-
pip install .
26+
pip install -e .
2727

2828
# download awscli
2929
pip install awscli

0 commit comments

Comments
 (0)