-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to pipeline #279
Merged
bricerisingalgorand
merged 11 commits into
algorand:develop
from
bricerisingalgorand:feature/circleciPipeline
Jan 26, 2022
Merged
Updates to pipeline #279
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
16f037f
Add build and pycharm files to gitignore
bricerisingalgorand 7ba92ef
Update circle job to use docker instead of vm
bricerisingalgorand 3d9f4ff
Define workflow for test pipeline
bricerisingalgorand e30384c
Add version field to workflows
bricerisingalgorand 52c8f8a
Add run to shell commands
bricerisingalgorand 7d83af5
Fix name and add debug for unit test job
bricerisingalgorand 159b5fe
Add checkout steps
bricerisingalgorand 0237e6a
Make unit tests exit with 1 when tests fail
bricerisingalgorand 1c13405
Fix verify for signatures with not enough chars
bricerisingalgorand 32deda3
Switch to using vm for integration tests
bricerisingalgorand 8e9cb9a
rearranged to keep logical order
algojack File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
version: 2.1 | ||
|
||
workflows: | ||
version: 2 | ||
test: | ||
jobs: | ||
- unit-test | ||
- integration-test | ||
|
||
jobs: | ||
build: | ||
machine: | ||
image: "ubuntu-2004:202104-01" | ||
unit-test: | ||
docker: | ||
- image: python:3.7.9 | ||
steps: | ||
- checkout | ||
- run: | ||
command: | | ||
pip3 install -r requirements.txt | ||
black --check . | ||
set -e | ||
python3 test_unit.py | ||
make docker-test | ||
- run: pip install -r requirements.txt | ||
- run: black --check . | ||
- run: python3 test_unit.py | ||
integration-test: | ||
machine: | ||
image: "ubuntu-2004:202104-01" | ||
steps: | ||
- checkout | ||
- run: make docker-test |
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 |
---|---|---|
|
@@ -113,3 +113,9 @@ venv.bak/ | |
*.feature | ||
test/features | ||
test-harness | ||
|
||
# Build files | ||
py-algorand-sdk-* | ||
|
||
# Pycharm | ||
.idea |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: There was a change in pynacl that allows throwing a
ValueError
orTypeError
in theverify
function.