Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymilne committed Dec 6, 2023
1 parent 0550dab commit 55fccd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
9 changes: 2 additions & 7 deletions vizro-ai/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,8 @@ prep-release = [
]
pypath = "hatch run python -c 'import sys; print(sys.executable)'"
secrets = "pre-commit run gitleaks --all-files"
test = [
"- test-unit",
"test-integration"
]
test-integration = [
"pytest -v tests/integration"
]
test = "pytest tests {args}"
test-integration = "pytest -v tests/integration {args}"
test-unit = "pytest tests/unit {args}"
test-unit-coverage = [
"coverage run -m pytest tests/unit {args}",
Expand Down
5 changes: 1 addition & 4 deletions vizro-core/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ prep-release = [
pypath = "python -c 'import sys; print(sys.executable)'"
schema = ["python schemas/generate.py {args}", '- hatch run lint --files="schemas/$(hatch version).json" > /dev/null']
secrets = "pre-commit run gitleaks --all-files"
test = [
"- test-unit",
"test-integration"
]
test = "pytest tests --headless {args}"
test-integration = "pytest tests/integration --headless {args}"
test-js = "./tools/run_jest.sh {args}"
test-unit = "pytest tests/unit {args}"
Expand Down

0 comments on commit 55fccd2

Please sign in to comment.