mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-10 00:25:00 +08:00
22 lines
538 B
Python
22 lines
538 B
Python
# -*- coding: utf-8 -*-
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
def test_stream_expansion(pkg_util, scenario, repo, koji):
|
|
"""
|
|
|
|
Submit the testmodule2 build with `rhpkg-stage module-build`
|
|
The produced builds can be cancelled after the test cases have been verified to save on
|
|
resources and time
|
|
|
|
Checks:
|
|
* Verify two module builds were generated from this build submission
|
|
|
|
"""
|
|
repo.bump()
|
|
builds = pkg_util.run()
|
|
|
|
assert len(builds) == 2
|
|
for build in builds:
|
|
pkg_util.cancel(build)
|