Skip to content

Commit

Permalink
ci: add marker
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-marcisovsky committed Jan 23, 2024
1 parent 364f696 commit f016a8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_run_test_app_usb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
run: pip install --only-binary cryptography pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf pyserial
- name: Run USB Test App on target
run: pytest --target=${{ matrix.idf_target }} --build-dir=build_${{ matrix.idf_target }}
run: pytest --target=${{ matrix.idf_target }} -m usb_host --build-dir=build_${{ matrix.idf_target }}
6 changes: 1 addition & 5 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,14 @@ addopts =

markers =
# target markers
esp32: support esp32 target
esp32s2: support esp32s2 target
esp32s3: support esp32s3 target
esp32c3: support esp32c3 target
esp32c2: support esp32c2 target
supported_targets: support all supported targets ('esp32', 'esp32s2', 'esp32c3', 'esp32s3', 'esp32c2')
supported_targets: support all supported targets ('esp32s2', 'esp32s3')

# env markers
generic: generic runner
usb_host: usb host runners
usb_device: usb device runners
ethernet: ethernet runners

# log related
log_cli = True
Expand Down

0 comments on commit f016a8f

Please sign in to comment.