Skip to content

Commit

Permalink
ensure tox>=4 and add to scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
PedramNavid committed Aug 6, 2024
1 parent ae66232 commit 7275325
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python_modules/dagster/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def get_version() -> str:
"pytest>=8",
"responses<=0.23.1", # https://github.com/getsentry/responses/issues/654
"syrupy>=4.0.0",
"tox",
"tox>=4",
"morefs[asynclocal]",
"fsspec<2024.5.0", # morefs incompatibly
"rapidfuzz",
Expand Down
5 changes: 4 additions & 1 deletion scripts/templates_create_dagster_package/tox.ini.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ download = True
setenv =
!windows: COVERAGE_ARGS = --cov=dagster --cov-append --cov-report term:skip-covered --cov-report html --cov-report xml
windows: COVERAGE_ARGS =
passenv = CI_* COVERALLS_REPO_TOKEN BUILDKITE* # TODO add additional env var requirements and add them to .buildkite/dagster-buildkite/dagster_buildkite/steps/packages.py
passenv =
CI_*
COVERALLS_REPO_TOKEN
BUILDKITE* # TODO add additional env var requirements and add them to .buildkite/dagster-buildkite/dagster_buildkite/steps/packages.py
install_command = uv pip install {opts} {packages}
deps =
-e ../../dagster[test]
Expand Down

0 comments on commit 7275325

Please sign in to comment.