Skip to content
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

Merge #231 into abi-indexable-types #240

Closed
Show file tree
Hide file tree
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
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ jobs:
with:
fetch-depth: 0
- name: Install pip dependencies
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
pip install -e .
- 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 .
mypy pyteal
pytest
build-docset:
runs-on: ubuntu-20.04
container: python:3.9 # Needs `make`, can't be slim
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ coverage.xml
.hypothesis/
.pytest_cache/

# Tests generating TEAL output to compared against an expected example.
tests/teal/*.teal
!tests/teal/*_expected.teal

# Translations
*.mo
*.pot
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ For each of our repositories we use the same model for contributing code. Develo

# Code Guidelines

We recommand the contributing code following [PEP 8 -- Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/).
We recommend the contributing code following [PEP 8 -- Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/).

[issues_url]: https://github.com/algorand/pyteal/issues
1 change: 1 addition & 0 deletions pyteal/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,6 @@ __all__ = [
"UnaryExpr",
"While",
"WideRatio",
"abi",
"compileTeal",
]