-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix tox env names * update test running script * update branch * make tox run in development mode for PR tests * update prepare-release script to build release * add test release step && re-enable step to create github release * update dev docs * update 18F -> cloud-gov in repo name * update dev docs * update pipeline set-self step to use branch as source * update pipeline * update RELEASE
- Loading branch information
Showing
8 changed files
with
86 additions
and
29 deletions.
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
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#!/bin/bash | ||
|
||
python -m venv venv | ||
source ./venv/bin/activate | ||
source venv/bin/activate | ||
|
||
python -m pip install -r requirements-tests.txt | ||
python -m pip install -e . | ||
|
||
# run tests | ||
tox | ||
# run tests in development mode | ||
tox --develop |
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,11 @@ | ||
#!/bin/bash | ||
|
||
python -m venv venv | ||
source venv/bin/activate | ||
|
||
TAG=$(git describe --tags) | ||
|
||
python -m pip install -r requirements-tests.txt | ||
|
||
# run tests on release | ||
tox --installpkg "dist/cg-django-uaa-$TAG.tar.gz" |
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 @@ | ||
--- | ||
platform: linux | ||
|
||
inputs: | ||
- name: cg-django-uaa-repo-tag | ||
|
||
outputs: | ||
- name: cg-django-uaa-repo-tag | ||
|
||
run: | ||
dir: cg-django-uaa-repo-tag | ||
path: ci/test-release.sh |
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