Skip to content

Commit

Permalink
Updating tests execution path to work across multiple OSs
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalinn committed Nov 22, 2024
1 parent 2ebc3af commit 782030d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:
pip install dist/behavex-4.0.9rc1.tar.gz
- name: Verify behavex command
shell: bash
run: |
if [[ "$GITHUB_OS_NAME" == "Windows" ]]; then
if [ "$RUNNER_OS" == "Windows" ]; then
behavex .\\tests\\features\\*.feature
else
behavex ./tests/features/*.feature
Expand Down

0 comments on commit 782030d

Please sign in to comment.