Adjust extra_data path relative to the play path #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Run Behavioral Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
yamllint: | |
name: Run behave tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
python3 -m pip install '.[dev]' | |
python3 -m pip install coverage | |
- name: Run tests | |
run: | | |
python3 -m coverage run -m behave | |
- name: Report test coverage | |
run: | | |
python3 -m coverage report |