We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be4c7be commit 4fcd6afCopy full SHA for 4fcd6af
Lib/test/test_regrtest.py
@@ -400,6 +400,12 @@ def test_fast_ci(self):
400
regrtest = self.check_ci_mode(args, use_resources)
401
self.assertEqual(regrtest.timeout, 10 * 60)
402
403
+ def test_fast_ci_resource(self):
404
+ # it should be possible to override resources
405
+ args = ['--fast-ci', '-u', 'network']
406
+ use_resources = ['network']
407
+ self.check_ci_mode(args, use_resources)
408
+
409
def test_slow_ci(self):
410
args = ['--slow-ci']
411
use_resources = sorted(cmdline.ALL_RESOURCES)
0 commit comments