Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/develop-pr-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -41,6 +41,16 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt

# Depends on manually installing git-annex package on the local runner
- name: Set up osfv-test-data
run: |
pushd osfv-test-data
git config user.email "[email protected]"
git config user.name "Your Name"
git annex get * || true
./setup.sh
popd

- name: Execute robot command
run: |
scripts/ci/develop_pr_auto_regression.sh
Expand Down
1 change: 1 addition & 0 deletions dasharo-compatibility/usb-hid-and-msc-support.robot
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Suite Teardown Run Keyword
... Log Out And Close Connection

Default Tags automated
# test


*** Test Cases ***
Expand Down
Loading