We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c18fede commit 6562419Copy full SHA for 6562419
test/compat_layer.py
@@ -231,3 +231,15 @@ def __init__(self):
231
f'user-defined-trusted-dirs={trusted_dir}',
232
self.stdout
233
)
234
+
235
236
+@rfm.simple_test
237
+class PipCheckTest(RunInGentooPrefixTest):
238
+ def __init__(self):
239
+ super().__init__()
240
+ self.descr = 'Verify that "pip check" does not return any errors.'
241
+ self.command = 'pip check'
242
+ self.sanity_patterns = sn.all([
243
+ sn.assert_eq(self.exit_code, 0),
244
+ sn.assert_found('\nNo broken requirements found.\n', self.stdout),
245
+ ])
0 commit comments