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