Skip to content

Commit

Permalink
Remove unneeded cut
Browse files Browse the repository at this point in the history
  • Loading branch information
kzscisoft committed Jan 13, 2022
1 parent 81fb90e commit 7dcbde0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fair-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: python -m poetry run pip install git+https://github.com/FAIRDataPipeline/pyDataPipeline.git@dev
- name: Run Tests for Each Marker
run: |
for marker in $(poetry run pytest --markers | grep -oE "faircli_[a-zA-Z]+" | cut -d '_' -f 2)
for marker in $(poetry run pytest --markers | grep -oE "faircli_[a-zA-Z]+")
do
echo "Running tests for marker '$marker'"
python -m poetry run pytest -m $marker --cov=fair --cov-report=xml --cov-report=term --cov-append -s tests/
Expand Down

0 comments on commit 7dcbde0

Please sign in to comment.