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

Add unintentionally excluded tests to Publishing workflow #2038

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -832,12 +832,12 @@ jobs:
run: |
apt-get update && apt-get install -y --no-install-recommends ca-certificates vim wget openssh-client
cd /tmp
# Setup links for validate_wheel.sh script
ln -s $GITHUB_WORKSPACE/scripts/validate_wheel.sh .
ln -s $GITHUB_WORKSPACE/docs/sphinx/examples/python /tmp/examples
ln -s $GITHUB_WORKSPACE/docs/sphinx/snippets/python /tmp/snippets
ln -s $GITHUB_WORKSPACE/python/tests /tmp/tests
ln -s $GITHUB_WORKSPACE/python/README.md .
# Setup files for validate_wheel.sh script
cp $GITHUB_WORKSPACE/scripts/validate_wheel.sh .
cp -r $GITHUB_WORKSPACE/docs/sphinx/examples/python /tmp/examples/
cp -r $GITHUB_WORKSPACE/docs/sphinx/snippets/python /tmp/snippets/
cp -r $GITHUB_WORKSPACE/python/tests /tmp/tests/
cp $GITHUB_WORKSPACE/python/README.md .
# Run the script w/ -q to run a shortened test
set +e # Allow script to keep going through errors (needed for skipped tests)
source validate_wheel.sh -w /tmp/install/cuda_quantum-*.whl -f /tmp -p 3.10
Expand Down
Loading