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

Added ESPM functions to py-seed client #28

Merged
merged 17 commits into from
Jun 4, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
test_env: [python, precommit, mypy]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display system info
Expand All @@ -36,9 +36,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Wait for web server
uses: nev7n/wait_for_response@v1
with:
# Increase the timeout significanlty, the EEEJ census tract
# Increase the timeout significantly, the EEEJ census tract
# migration take ~6 minutes to run along.
url: "http://localhost:8000/"
responseCode: 200
Expand All @@ -86,7 +86,7 @@ jobs:
SEED_PM_UN: ${{ secrets.SEED_PM_UN }}
SEED_PM_PW: ${{ secrets.SEED_PM_PW }}
run: |
pytest -m "integration" -s
pytest -m integration -s
- name: Dump docker logs on failure
if: failure()
uses: jwalton/gh-docker-logs@v2
6 changes: 6 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@
"dname",
"durl",
"ECAM",
"EEEJ",
"ESPM",
"excpt",
"geocoded",
"greenbuildingregistry",
"jakejarvis",
"JSONAPI",
"jwalton",
"Munday",
"ndeloof",
"officedocument",
"openxmlformats",
"precommit",
"printenv",
"pyseed",
"pytest",
"sdist",
Expand Down
2 changes: 2 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[mypy]
ignore_missing_imports = True
Loading