-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# Install addons to test in editable mode. This will install all python dependencies | ||
# from PyPI, including OCA addons from other repos. | ||
# | ||
|
||
set -ex | ||
|
||
oca_list_addons_to_test_as_url_reqs --editable >> test-requirements.txt | ||
|
||
cat test-requirements.txt | ||
|
||
# Disable git versioning strategies for better performance, as we | ||
# are not interested in git post versions here. | ||
env SETUPTOOLS_ODOO_POST_VERSION_STRATEGY_OVERRIDE=none \ | ||
WHOOL_POST_VERSION_STRATEGY_OVERRIDE=none \ | ||
uv pip install -r test-requirements.txt |