Skip to content

Commit

Permalink
Merge pull request #2191 from reubenmiller/fix-justfile-integration-t…
Browse files Browse the repository at this point in the history
…ests

dev: activate python venv before calling integration tests
  • Loading branch information
reubenmiller authored Aug 28, 2023
2 parents 3697d51 + e29adc1 commit 81b9d51
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,15 @@ setup-integration-test *ARGS:

# Run integration tests (using local build)
integration-test *ARGS: release
cd tests/RobotFramework && .venv/bin/python3 -m invoke build --local tests {{ARGS}}
#!/usr/bin/env bash
set -e
if [ ! -d tests/RobotFramework/.venv ]; then
just -f {{justfile()}} setup-integration-test
fi
cd tests/RobotFramework
source .venv/bin/activate
invoke build --local
invoke tests {{ARGS}}
# Generate linux package scripts from templates
generate-linux-package-scripts:
Expand Down

1 comment on commit 81b9d51

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
257 0 5 257 100 56m43.082s

Please sign in to comment.