-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: dev library testing based on branch name or variable (#1538)
* added or condition * updated condition * updated condition * easier readability * script for installing deps, test setup * typo, deleted old scripts * grant execute permissions * revert worker config * delete install deps script * re-added isntall-deps script --------- Co-authored-by: Victoria Hall <victoria.hall@microsoft.com>
- Loading branch information
1 parent
80d83cc
commit 5444e63
Showing
12 changed files
with
54 additions
and
66 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
#!/bin/bash | ||
|
||
python -m pip install --upgrade pip | ||
python -m pip install -U azure-functions --pre | ||
python -m pip install -U -e .[dev] | ||
|
||
if [[ $1 != "3.7" ]]; then | ||
python -m pip install --pre -U -e .[test-http-v2] | ||
fi | ||
if [[ $1 != "3.7" && $1 != "3.8" ]]; then | ||
python -m pip install --pre -U -e .[test-deferred-bindings] | ||
fi |
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,6 @@ | ||
#!/bin/bash | ||
|
||
cd tests | ||
python -m invoke -c test_setup build-protos | ||
python -m invoke -c test_setup webhost --branch-name=dev | ||
python -m invoke -c test_setup extensions |
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
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"defaultWorkerPath":"worker.py", | ||
"workerIndexing": "true" | ||
} | ||
} | ||
} |