Skip to content

Commit

Permalink
Fix failure on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed May 23, 2024
1 parent 5a67f78 commit 16530bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ jobs:

- name: By default, disable tests (only run basic import test)
if: ${{ env.RUN_INTEGRATION_TESTS_IN_THIS_JOB == 'false' }}
run: echo "TEST_COMMAND=python -c 'import aerospike'" >> $GITHUB_ENV
# Use double quotes to enclose Python code since powershell doesn't seem to allow using single quotes
# https://stackoverflow.com/questions/34379631/syntaxerror-eol-while-scanning-string-literal
run: echo "TEST_COMMAND=python -c \"import aerospike\"" >> $GITHUB_ENV
shell: bash

- name: Enable integration tests
Expand Down

0 comments on commit 16530bb

Please sign in to comment.