Compare commits
No commits in common. "c8s" and "c8" have entirely different histories.
17
.gitignore
vendored
17
.gitignore
vendored
@ -1,16 +1 @@
|
||||
gevent-0.13.0.tar.gz
|
||||
/gevent-0.13.1.tar.gz
|
||||
/gevent-0.13.3.tar.gz
|
||||
/gevent-0.13.6.tar.gz
|
||||
/gevent-0.13.8.tar.gz
|
||||
/gevent-1.0.tar.gz
|
||||
/gevent-1.0.1.tar.gz
|
||||
/gevent-1.0.2.tar.gz
|
||||
/gevent-1.1b5.tar.gz
|
||||
/gevent-1.1b6.tar.gz
|
||||
/gevent-1.1rc3.tar.gz
|
||||
/gevent-1.1rc4.tar.gz
|
||||
/gevent-1.1.0.tar.gz
|
||||
/gevent-1.1.1.tar.gz
|
||||
/gevent-1.1.2.tar.gz
|
||||
/gevent-1.2.2.tar.gz
|
||||
SOURCES/gevent-1.2.2.tar.gz
|
||||
1
.python-gevent.metadata
Normal file
1
.python-gevent.metadata
Normal file
@ -0,0 +1 @@
|
||||
3a2ab5f982db6d2ebe8f3763f1563b40343c782e SOURCES/gevent-1.2.2.tar.gz
|
||||
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||
1
sources
1
sources
@ -1 +0,0 @@
|
||||
SHA512 (gevent-1.2.2.tar.gz) = 1e2dd544cffea62ee32de2e4066b3f4c121058a1211b89da281ec3882f3763217fe2d346ce38b66e27df9f59cfe05bb137d1608a681dd10eaf06a33dc22f531c
|
||||
@ -1,12 +0,0 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import gevent
|
||||
from gevent import socket
|
||||
urls = ['www.fedoraproject.org', 'www.redhat.com']
|
||||
jobs = [gevent.spawn(socket.gethostbyname, url) for url in urls]
|
||||
gevent.joinall(jobs, timeout=2)
|
||||
|
||||
results = [job.value for job in jobs]
|
||||
print(results)
|
||||
if not all(results):
|
||||
sys.exit(1)
|
||||
@ -1,15 +0,0 @@
|
||||
---
|
||||
# Run a simple test
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
|
||||
required_packages:
|
||||
- python36
|
||||
|
||||
tests:
|
||||
- simple:
|
||||
dir: scripts
|
||||
run: ./run_tests
|
||||
Loading…
Reference in New Issue
Block a user