From eeb82e7ca8b17bc7c4926db956f905655adc09e8 Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Sep 05 2019 11:01:30 +0000 Subject: [PATCH 1/2] Update README Signed-off-by: Michal Srb --- diff --git a/README.rst b/README.rst index 99bcef2..aceb04e 100644 --- a/README.rst +++ b/README.rst @@ -54,10 +54,10 @@ Manually * Install the needed system libraries:: - sudo dnf install git python2-virtualenv + sudo dnf install git python3-virtualenv python2 - .. note:: On Fedora 23 and earlier or on RHEL and derivative (CentOS, - Scientific Linux) the package `python2-virtualenv` is named + .. note:: On RHEL and its derivatives (CentOS, Scientific Linux) + the package which provides `virtualenv` command is named `python-virtualenv` * Retrieve the sources:: @@ -71,7 +71,7 @@ Manually * create the virtualenv:: - virtualenv rats_env + virtualenv -p python2 rats_env source ./rats_env/bin/activate * Install the dependencies:: From 6ca4dc111a67696e050ecb3988f8fc8b5e102d6b Mon Sep 17 00:00:00 2001 From: Michal Srb Date: Sep 05 2019 11:01:51 +0000 Subject: [PATCH 2/2] Update URLs of backend CI systems Signed-off-by: Michal Srb --- diff --git a/rats/lib/backends/atomic_ci.py b/rats/lib/backends/atomic_ci.py index 0651354..78c0a7b 100644 --- a/rats/lib/backends/atomic_ci.py +++ b/rats/lib/backends/atomic_ci.py @@ -28,7 +28,7 @@ class AtomicCiBackend(Backend): """ name = 'AtomicCI' - url = 'https://fedoraproject.org/wiki/CI' + url = 'https://docs.fedoraproject.org/en-US/ci/' description = 'Supports re-triggering tests in Taskotron' @classmethod diff --git a/rats/lib/backends/simple_koji_ci.py b/rats/lib/backends/simple_koji_ci.py index 6e1bcac..cf87d37 100644 --- a/rats/lib/backends/simple_koji_ci.py +++ b/rats/lib/backends/simple_koji_ci.py @@ -27,7 +27,7 @@ class SimpleKojiCiBackend(Backend): """ name = 'simple-koji-ci' - url = 'https://pagure.io/simple-koji-ci' + url = 'https://pagure.io/fedora-ci/simple-koji-ci' description = 'Supports re-triggering tests by simple-koji-ci' @classmethod