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 698c5ac commit 2ebc3af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,9 @@ jobs:
pip install dist/behavex-4.0.9rc1.tar.gz
- name: Verify behavex command
run: behavex ./tests/features/*.feature
run: |
if [[ "$GITHUB_OS_NAME" == "Windows" ]]; then
behavex .\\tests\\features\\*.feature
else
behavex ./tests/features/*.feature
fi

0 comments on commit 2ebc3af

Please sign in to comment.