forked from QubesOS/qubes-core-qrexec
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/pr/17'
* origin/pr/17: qrexec-daemon: don't open log file when run with --direct Don't run tests as root in Docker Add tests for qrexec-daemon daemon: add options to enable testing Add tests for MSG_SERVICE_REFUSED Move socket tests to qrexec/tests/socket Add tests for agent using vchan-socket agent: don't try to change user if not necessary agent: add options for alternative socket paths
- Loading branch information
Showing
16 changed files
with
878 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
FROM fedora:31 | ||
|
||
RUN dnf install -y python3-pip python3-gobject gtk3 python3-pytest python3-coverage | ||
RUN dnf install -y python3-pip python3-gobject gtk3 python3-pytest \ | ||
python3-coverage python3-devel pam-devel pandoc gcc git make | ||
|
||
ADD requirements.txt / | ||
RUN git clone https://github.com/QubesOS/qubes-core-vchan-socket ~/qubes-core-vchan-socket | ||
RUN make -C ~/qubes-core-vchan-socket all | ||
RUN make -C ~/qubes-core-vchan-socket install LIBDIR=/usr/lib64 | ||
|
||
ADD requirements.txt / | ||
RUN pip3 install -r requirements.txt | ||
|
||
RUN useradd --create-home --shell /bin/bash travis --uid 2000 | ||
USER travis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ pylint | |
sphinx | ||
codecov | ||
pydbus | ||
psutil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.