-
Notifications
You must be signed in to change notification settings - Fork 85
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
Remove PySide as a test dependency #1791
Conversation
This was a bit premature: tests pass, but some of those tests are being skipped. See #1792 for a fix. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
- name: Install Linux packages for Qt support | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libegl1 | ||
sudo apt-get install libxkbcommon-x11-0 | ||
sudo apt-get install libxcb-cursor0 | ||
sudo apt-get install libxcb-icccm4 | ||
sudo apt-get install libxcb-image0 | ||
sudo apt-get install libxcb-keysyms1 | ||
sudo apt-get install libxcb-randr0 | ||
sudo apt-get install libxcb-render-util0 | ||
sudo apt-get install libxcb-shape0 | ||
if: matrix.os == 'ubuntu-latest' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice tidy up! One less place to remember all the X11 packages...
if: matrix.os != 'ubuntu-latest' | ||
- name: Test Traits package | ||
run: python -m unittest discover -v traits | ||
working-directory: testdir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh, TIL working-directory
context in GH Actions.
Quite handy indeed.
Thanks for review, @flongford! |
Since #1788 and #1792, we should no longer need a working Qt backend when testing. Accordingly, this PR:
apt-get
Qt packages on Ubuntu runnersxvfb-run
on Ubuntu runners