We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1952d51 commit 1926eeaCopy full SHA for 1926eea
.github/workflows/publishing.yml
@@ -880,6 +880,7 @@ jobs:
880
done`
881
882
rm -rf examples && mv github-repo/docs/sphinx/examples examples
883
+ mv github-repo/docs/notebook_validation.py .
884
GITHUB_STEP_SUMMARY=$GITHUB_STEP_SUMMARY \
885
bash github-repo/scripts/validate_container.sh $backends_to_test | tee /tmp/validation.out
886
docs/notebook_validation.py
@@ -20,6 +20,7 @@
20
21
def read_available_backends():
22
available_backends = sys.stdin.readlines()
23
+ available_backends = ' '.join(available_backends).split()
24
return [backend.strip() for backend in available_backends]
25
26
0 commit comments