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 7c21836 commit 29d1df9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions examples/docs_beta_snippets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
packages=find_packages(exclude=["test"]),
install_requires=["dagster-cloud"],
extras_require={
"full": [
"test": [
"pytest",
"dagster-webserver[test]",
]
},
)
7 changes: 4 additions & 3 deletions examples/docs_beta_snippets/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ install_command = uv pip install {opts} {packages}
deps =
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]
-e ../../python_modules/libraries/dagster-embedded-elt
-e .[test]
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 29d1df9

Please sign in to comment.