mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-04-03 10:48:03 +08:00
11 lines
284 B
Python
Executable File
11 lines
284 B
Python
Executable File
#!/usr/bin/env python3
|
|
""" A little script to test submitting a build. """
|
|
|
|
import requests
|
|
|
|
response = requests.post('http://127.0.0.1:5000/rida/module-builds/', json={
|
|
'scmurl': 'git://pkgs.stg.fedoraproject.org/modules/core.git',
|
|
})
|
|
|
|
print("%r %s" % (response, response.text))
|