Add Behave-BDD tests to GitHub Actions

This commit is contained in:
Michael Mintz 2022-06-07 10:45:09 -04:00
parent 85f5d21a8b
commit 12704fd7dd
1 changed files with 6 additions and 0 deletions

View File

@ -89,3 +89,9 @@ jobs:
- name: Run pytest my_first_test.py --browser=firefox --headless
run: |
pytest examples/my_first_test.py --browser=firefox --headless -v -s --junit-xml=junit/test-results.xml
- name: Run behave examples/behave_bdd/features/calculator.feature -D rs -D xvfb -D crumbs -T -k
run: |
behave examples/behave_bdd/features/calculator.feature -D rs -D crumbs -D xvfb -T -k
- name: Run behave examples/behave_bdd/features/realworld.feature -D rs -D xvfb -D crumbs -T -k
run: |
behave examples/behave_bdd/features/realworld.feature -D rs -D crumbs -D xvfb -T -k