Skip to content

Commit

Permalink
Skip RobotFramework tests on aarch64
Browse files Browse the repository at this point in the history
because of:
OSError: [Errno 8] Exec format error: '/opt/circleci/.pyenv/versions/3.11.1/lib/python3.11/site-packages/selenium/webdriver/common/linux/selenium-manager'

This is tested on x86_64 anyway!
  • Loading branch information
atodorov committed Mar 29, 2023
1 parent 163f9ff commit 50c6453
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_http.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,11 @@ _EOF_
rlPhaseEnd

rlPhaseStartTest "Should not execute inline JavaScript"
rlRun -t -c "curl -k --fail https://localhost/uploads/attachments/auth_user/2/inline_javascript.svg"
rlRun -t -c "robot tests/ui/test_inline_javascript.robot"
ARCH=$(uname -m)
if [ "$ARCH" == "x86_64" ]; then
rlRun -t -c "curl -k --fail https://localhost/uploads/attachments/auth_user/2/inline_javascript.svg"
rlRun -t -c "robot tests/ui/test_inline_javascript.robot"
fi
rlPhaseEnd

rlPhaseStartTest "Performance baseline for /accounts/register/"
Expand Down

0 comments on commit 50c6453

Please sign in to comment.