Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devel20241105 #43

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8671b55
q-dev: port
piotrbartman Jul 24, 2024
1269437
q-dev: check identity
piotrbartman Aug 5, 2024
3acae03
q-dev: refactor device_protocol.py
piotrbartman Aug 12, 2024
540072f
q-dev: implements device_id
piotrbartman Aug 15, 2024
63ae996
q-dev: fix detaching
piotrbartman Aug 15, 2024
b589bf6
q-dev: update device utils
piotrbartman Aug 16, 2024
26c0ca0
q-dev: assignment.devices
piotrbartman Aug 16, 2024
487b8d6
q-dev: backward compatibility
piotrbartman Aug 19, 2024
82b116d
q-dev: fix detaching
piotrbartman Aug 19, 2024
5477f8c
q-dev: auto-attaching order
piotrbartman Aug 20, 2024
f3b7507
q-dev: fix auto-attach
piotrbartman Aug 21, 2024
a23262b
q-dev: add more tests
piotrbartman Aug 23, 2024
e5ea7bf
q-dev: update utils
piotrbartman Aug 27, 2024
6d02716
q-dev: correct english grammar
piotrbartman Sep 27, 2024
4876f2a
q-dev: async confirmation
piotrbartman Oct 7, 2024
f80b8b7
q-dev: update utils.py
piotrbartman Oct 7, 2024
a80d27d
q-dev: forbid usb assignment options
piotrbartman Oct 8, 2024
094af98
q-dev: updated tests and wait for attachment to be done
piotrbartman Oct 14, 2024
4296c51
q-dev: rename attach-confirm -> qubes-device-attach-confirm
piotrbartman Oct 14, 2024
21cf824
q-dev: update tests
piotrbartman Oct 17, 2024
2d26fe8
typo
piotrbartman Oct 17, 2024
ed84c57
q-dev: cleanup
piotrbartman Oct 18, 2024
dcd8580
q-dev: call attach-confirm socket directly
piotrbartman Oct 21, 2024
6013161
q-dev: update common part with admin-core
piotrbartman Oct 21, 2024
e80c7d8
Use Port for device and make mypy happy
fepitre Nov 5, 2024
72626dd
Remove core2 tests
fepitre Nov 8, 2024
4bb06e1
tests: use AsyncMock
fepitre Nov 8, 2024
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
13 changes: 13 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,16 @@ include:
project: QubesOS/qubes-continuous-integration
- file: /r4.2/gitlab-vm.yml
project: QubesOS/qubes-continuous-integration

mypy:
stage: checks
image: fedora:40
tags:
- docker
before_script:
- sudo dnf install -y python3-mypy python3-pip
script:
- mypy --install-types --non-interactive --ignore-missing-imports --junit-xml mypy.xml qubesusbproxy
artifacts:
reports:
junit: mypy.xml
Loading