-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Ensure requests caching can be enabled (#199)
* fix: Ensure requests caching can be enabled * Add job dependency
- Loading branch information
1 parent
e745723
commit e141c51
Showing
6 changed files
with
98 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,53 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
FORCE_COLOR: "1" | ||
NOXSESSION: run | ||
NOXPYTHON: "3.11" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Install Poetry | ||
run: | | ||
pipx install poetry | ||
pipx inject poetry poetry-dynamic-versioning[plugin] | ||
poetry --version | ||
poetry self show plugins | ||
- name: Install Nox | ||
run: | | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Run Nox | ||
env: | ||
TAP_JOTFORM_API_KEY: ${{ secrets.TAP_JOTFORM_API_KEY }} | ||
TAP_JOTFORM_API_URL: "https://api.jotform.com" | ||
run: | | ||
nox | ||
- name: Upload request cache | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: requests-cache | ||
path: http_cache.sqlite | ||
|
||
tests: | ||
runs-on: ubuntu-latest | ||
needs: run | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
NOXSESSION: ${{ matrix.session }} | ||
|
@@ -37,7 +82,7 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- {python-version: "3.10", session: "mypy"} | ||
- {python-version: "3.11", session: "mypy"} | ||
- {python-version: "3.11", session: "tests"} | ||
- {python-version: "3.10", session: "tests"} | ||
- {python-version: "3.9", session: "tests"} | ||
|
@@ -72,6 +117,11 @@ jobs: | |
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Download request cache | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: requests-cache | ||
|
||
- name: Run Nox | ||
env: | ||
TAP_JOTFORM_API_KEY: ${{ secrets.TAP_JOTFORM_API_KEY }} | ||
|
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"requests_cache": { | ||
"enabled": true, | ||
"config": { | ||
"expire_after": 3600 | ||
} | ||
} | ||
} |
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