Skip to content

Commit

Permalink
Add missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
trungleduc committed Apr 12, 2024
1 parent b2d950d commit 87666c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,6 @@ jobs:
with:
name: tljh-playwright-tests
path: |
ui-tests/test-results
ui-tests/local-test-results
ui-tests/binderhub-test-results
ui-tests/playwright-report
10 changes: 4 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ dependencies = [
"httpx",
"sqlalchemy>=2",
"pydantic>=2,<3",
"alembic>=1.13,<2"
"alembic>=1.13,<2",
"jupyter-repo2docker>=2024,<2025",
]
dynamic = ["version"]
license = {file = "LICENSE"}
license = { file = "LICENSE" }
name = "tljh-repo2docker"
readme = "README.md"

Expand Down Expand Up @@ -59,10 +60,7 @@ source_dir = "src"
version_cmd = "hatch version"

[tool.jupyter-releaser.hooks]
before-build-npm = [
"npm install",
"npm run build:prod",
]
before-build-npm = ["npm install", "npm run build:prod"]
before-build-python = ["npm run clean"]
before-bump-version = ["python -m pip install hatch"]

Expand Down
1 change: 1 addition & 0 deletions ui-tests/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const configFile = `jupyterhub_config_${process.env.CONFIG_FILE}.py`;
module.exports = {
timeout: 600000,
reporter: [[process.env.CI ? 'dot' : 'list'], ['html']],
outputDir: `${process.env.CONFIG_FILE}-test-results`,
use: {
baseURL: 'http://localhost:8000',
video: 'retain-on-failure',
Expand Down

0 comments on commit 87666c5

Please sign in to comment.