-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full
pip install
expected to fail on Rawhide
Because of aio-libs/aiohttp/issues/7229 the full pip install test is expected to fail on `rawhide` until the issue is fixed. Move test code from the plan to a real test to enable the adjust rule.
- Loading branch information
Showing
2 changed files
with
32 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
path: "/" | ||
framework: shell | ||
require: | ||
- gcc | ||
- python3 | ||
- python3-devel | ||
tier: null | ||
|
||
/mini: | ||
summary: Ensure the minimal pip install works | ||
test: | | ||
/tmp/venv/bin/pip install . | ||
/tmp/venv/bin/tmt --help | ||
|
||
/full: | ||
summary: Ensure the full pip install works | ||
require+: | ||
- libvirt-devel | ||
- krb5-devel | ||
- libpq-devel | ||
- redhat-rpm-config | ||
test: | | ||
/tmp/venv/bin/pip install .[all] | ||
/tmp/venv/bin/tmt --help | ||
adjust: | ||
result: xfail | ||
when: distro == fedora-rawhide | ||
because: https://github.com/aio-libs/aiohttp/issues/7229 |