Skip to content

Commit

Permalink
Run all tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MinyazevR authored and iakov committed Dec 17, 2024
1 parent d8fa283 commit 229eedf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,22 +130,22 @@ jobs:
run: |
for i in "$GITHUB_WORKSPACE"/tests/*.qrs; do "$TWOD_EXEC_NAME" --generate-path "$i".js --generate-mode javascript --close \
-s 5 --script-path "$i".js -m script "$i"; done
if: startsWith(inputs.os, 'ubuntu')
if: ${{ !startsWith(inputs.os, 'macos') }}

- name: Run minimal Python interpeter tests in direct script mode
run: |
for i in "$GITHUB_WORKSPACE"/tests/*.qrs; do "$TWOD_EXEC_NAME" --generate-path "$i".py \
--close -s 5 --script-path "$i".py -m script "$i"; done
if: startsWith(inputs.os, 'ubuntu')
if: ${{ !startsWith(inputs.os, 'macos') }}

- name: Run minimal Javascript interpeter tests as fields in .qrs (For backward compatibility)
run: |
for i in "$GITHUB_WORKSPACE"/tests/*.qrs; do "$PATCHER_NAME" -s "$i".js "$i" \
&& "$TWOD_EXEC_NAME" --close -s 5 -m script "$i"; done
if: startsWith(inputs.os, 'ubuntu')
if: ${{ !startsWith(inputs.os, 'macos') }}

- name: Run minimal Python interpeter tests as fields in .qrs (For backward compatibility)
run: |
for i in "$GITHUB_WORKSPACE"/tests/*.qrs; do "$PATCHER_NAME" -s "$i".py "$i" \
&& "$TWOD_EXEC_NAME" --close -s 5 -m script "$i"; done
if: startsWith(inputs.os, 'ubuntu')
if: ${{ !startsWith(inputs.os, 'macos') }}

0 comments on commit 229eedf

Please sign in to comment.