Skip to content

Commit

Permalink
fix broken tox
Browse files Browse the repository at this point in the history
  • Loading branch information
PedramNavid committed Aug 22, 2024
1 parent 757d4c9 commit 559215a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
8 changes: 1 addition & 7 deletions examples/docs_beta_snippets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,10 @@
"Operating System :: OS Independent",
],
packages=find_packages(exclude=["test"]),
install_requires=[
"dagster",
"dagster-webserver",
"dagster-embedded-elt",
"dagster-duckdb-pandas",
],
install_requires=["dagster-cloud"],
extras_require={
"full": [
"pytest",
"dagster-webserver[test]",
]
},
)
11 changes: 7 additions & 4 deletions examples/docs_beta_snippets/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,21 @@ download = True
passenv =
CI_*
COVERALLS_REPO_TOKEN
POSTGRES_TEST_DB_HOST
BUILDKITE*
install_command = uv pip install {opts} {packages}
# We install local packags to build from master, rather than pinning to a release.
deps =
-e ../../python_modules/dagster[test]
-e ../../python_modules/dagster-pipes
source: -e ../../python_modules/dagster[test]
source: -e ../../python_modules/dagster-pipes
pypi: dagster[test]
-e ../../python_modules/dagster-graphql
-e ../../python_modules/dagster-webserver
-e ../../python_modules/libraries/dagster-embedded-elt
-e ../../python_modules/libraries/dagster-duckdb-pandas
-e .[full]
allowlist_externals =
/bin/bash
uv
commands =
!windows: /bin/bash -c '! pip list --exclude-editable | grep -e dagster'
source: /bin/bash -c '! pip list --exclude-editable | grep -e dagster'
pytest -c ../../pyproject.toml -vv {posargs}

0 comments on commit 559215a

Please sign in to comment.