diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-09-27 12:58:39 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-09-27 12:58:39 +0200 |
| commit | 5b16dc84e12294b83c100e820b869720bfecec68 (patch) | |
| tree | e0d88a0e8095996e7d2ae03571cb06a8d49fa38a /wrappers | |
| parent | 2cffe792d8070f37345056e8c88379aa8a2774fd (diff) | |
Python: Fix test lib path
Diffstat (limited to 'wrappers')
| -rw-r--r-- | wrappers/python/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wrappers/python/Makefile b/wrappers/python/Makefile index 1526173..d5e9071 100644 --- a/wrappers/python/Makefile +++ b/wrappers/python/Makefile @@ -9,13 +9,13 @@ endif # Build for current platform only pack: - mkdir -p ./src/lib + mkdir -p ./eduvpn_common/lib ./setup.py bdist_wheel $(SETUP_ARGS) --exports-lib-path="$(EXPORTS_LIB_PATH)" test: .try-build-lib - install "$(EXPORTS_LIB_SUBFOLDER_PATH)/$(LIB_FILE)" -Dt "src/lib" + install "$(EXPORTS_LIB_SUBFOLDER_PATH)/$(LIB_FILE)" -Dt "eduvpn_common/lib" python3 -m unittest tests - rm src/lib/* + rm eduvpn_common/lib/* clean: rm -rf build/ dist/ *.egg-info/ lib/* |
