Skip to content

Commit

Permalink
keep the dagger reqs in their own file; dagger requires py310 and we …
Browse files Browse the repository at this point in the history
…test on py39
  • Loading branch information
mikealfare committed Dec 18, 2024
1 parent 84c6dc2 commit f9472fb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,14 @@ jobs:
${{ inputs.dbt_common_branch }}
cat hatch.toml
- name: Install python dependencies
- name: Install hatch
uses: pypa/hatch@install

- name: Install python dependencies
run: |
python -m pip install --user --upgrade pip
python -m pip --version
python -m pip install -r dagger/requirements.txt
- name: Run tests for ${{ matrix.test }}
run: hatch run integration-tests --profile ${{ matrix.test }}
3 changes: 3 additions & 0 deletions dagger/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
beartype<0.18.0
dagger-io~=0.9.7
python-dotenv
2 changes: 0 additions & 2 deletions hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ dependencies = [
"dbt-common @ git+https://github.com/dbt-labs/dbt-common.git",
"dbt-tests-adapter @ git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-tests-adapter",
"dbt-core @ git+https://github.com/dbt-labs/dbt-core.git#subdirectory=core",
"beartype<0.18.0",
"dagger-io~=0.9.7",
"ddtrace==2.3.0",
"ipdb~=0.13.13",
"pre-commit==3.7.0",
Expand Down

0 comments on commit f9472fb

Please sign in to comment.