Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invoke prysk with the directory name to ensure all tests run #4715

Merged
merged 1 commit into from Apr 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions turborepo-tests/integration/package.json
Expand Up @@ -4,9 +4,9 @@
"test:setup_python": "python3 -m venv .cram_env",
"test:setup_pip": "pnpm test:setup_python && .cram_env/bin/python3 -m pip install --quiet --upgrade pip",
"test:setup_prysk": "pnpm test:setup_pip && .cram_env/bin/pip install prysk",
"test": "pnpm test:setup_prysk && .cram_env/bin/prysk --shell=`which bash` tests/**/*.t",
"test:interactive": ".cram_env/bin/prysk -i --shell=`which bash` tests/**/*.t",
"test:parallel": ".cram_env/bin/pytest -n auto tests/**/*.t --prysk-shell=`which bash`",
"test": "pnpm test:setup_prysk && .cram_env/bin/prysk --shell=`which bash` tests",
"test:interactive": ".cram_env/bin/prysk -i --shell=`which bash` tests",
"test:parallel": ".cram_env/bin/pytest -n auto tests --prysk-shell=`which bash`",
"pretest:parallel": ".cram_env/bin/pip3 install --quiet pytest \"prysk[pytest-plugin]\" pytest-xdist"
},
"dependencies": {
Expand Down