Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
with:
fetch-depth: 0
- name: Install pip dependencies
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
pip install -e .
Copy link
Contributor

@tzaffi tzaffi Mar 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Future proofing? (I don't see anything crucial for testing in setup.py but I have no objections)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In theory this is necessary for the from pyteal import __all__ as static_all line to work in scripts/generate_init.py, but I haven't tested without it

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

- name: Build and Test
run: |
pytest
mypy pyteal
python3 -c "import pyteal" scripts/generate_init.py --check
python scripts/generate_init.py --check
black --check .
build-docset:
runs-on: ubuntu-20.04
Expand Down