Skip to content

Commit

Permalink
introduce a change in test tools
Browse files Browse the repository at this point in the history
that triggers test data update
  • Loading branch information
bernt-matthias committed Sep 7, 2021
1 parent 2657003 commit 979d57e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tools_update_test_data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
run: |
git config --global user.name "Arthur Dent"
git config --global user.email "[email protected]"
echo "" >> test/tools/tool1/tool1.xml
echo "" >> test/tools/tool2/tool2.xml
sed -i -e 's/echo test/echo WRONG_TEST_DATA/' test/tools/tool1/tool1.xml
sed -i -e 's/echo test/echo WRONG_TEST_DATA/' test/tools/tool2/tool2.xml
git commit -m bump test/tools/
- name: Fake a Planemo run to update cache and determine commit range, repositories, and chunks
uses: ./
Expand Down Expand Up @@ -119,6 +119,10 @@ jobs:
with:
path: ~/.cache/pip
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ needs.setup-pr-tools.outputs.galaxy-head-sha }}
- name: Introduce a change on test tool1 and 2
run: |
sed -i -e 's/echo test/echo WRONG_TEST_DATA/' test/tools/tool1/tool1.xml
sed -i -e 's/echo test/echo WRONG_TEST_DATA/' test/tools/tool2/tool2.xml
- name: Planemo test tools
uses: ./
id: test-tools
Expand Down

0 comments on commit 979d57e

Please sign in to comment.