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

🧮 Environment-specific-testing for full frontend dependency control #2073

Draft
wants to merge 24 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
avoid skipping stpes
  • Loading branch information
daquinteroflex committed Nov 15, 2024
commit 062ddee56dbdfb05c3f65aa4e39c0b02428ab241
7 changes: 4 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@ jobs:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v5
# Note we just want the python versions to exist
# in order for `nox` to create the test-specific-venvs

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: 3.11

# Have a poetry installation available
- name: Install Poetry
Expand All @@ -38,6 +37,8 @@ jobs:
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
# Note we're installing the test configuration
# in order to pyproject.toml manage these deps
pip install -e .[test]

# Verify installation
Expand Down
Loading