fix link in setup.py
AbandonedPublic

Authored by sumantrom on Feb 10 2017, 10:32 AM.

Details

Reviewers
None
Summary

modified link from fedorahosted to pagure

Test Plan

na

Diff Detail

Repository
rTRGR taskotron-trigger
Branch
develop
Lint
Lint OK
Unit
Unit Test Errors
Build Status
Buildable 1042
Build 1042: arc lint + arc unit

Unit TestsBroken

Excuse: na
TimeTest
0 ms.testing.functest_cli
ImportError while importing test module '/home/sumantro/Downloads/taskotron-trigger/testing/functest_cli.py'. Hint: make sure your test modules/packages have valid Python names. Traceback:
0 ms.testing.test_compose_trigger
ImportError while importing test module '/home/sumantro/Downloads/taskotron-trigger/testing/test_compose_trigger.py'. Hint: make sure your test modules/packages have valid Python names. Traceback:
0 ms.testing.test_dist_git_trigger
ImportError while importing test module '/home/sumantro/Downloads/taskotron-trigger/testing/test_dist_git_trigger.py'. Hint: make sure your test modules/packages have valid Python names. Traceback:
0 ms.testing.test_jobtrigger
ImportError while importing test module '/home/sumantro/Downloads/taskotron-trigger/testing/test_jobtrigger.py'. Hint: make sure your test modules/packages have valid Python names. Traceback:
0 ms.testing.test_koji_build_trigger
ImportError while importing test module '/home/sumantro/Downloads/taskotron-trigger/testing/test_koji_build_trigger.py'. Hint: make sure your test modules/packages have valid Python names. Traceback:
View Full Test Results (8 Broken)
sumantrom retitled this revision from to fix link in setup.py.Feb 10 2017, 10:32 AM
sumantrom updated this object.
sumantrom edited the test plan for this revision. (Show Details)
kparal added a subscriber: kparal.Feb 10 2017, 2:47 PM

Hi, thanks for the diff! Since this is your first diff, let me guide you a bit. (I also commit updated instructions which should help you, be sure to pull latest code and read Setting Up a Dev Environment section until the config file adjustments - that and further steps are not needed).

First, you should always create a separate branch for your diffs, based on latest develop:

git checkout develop
git pull
git checkout -b feature/fixurl
# do your work
git commit
arc diff develop

Second, unit tests have to pass. I assume they don't pass for you because you have executed arc diff develop outside of virtualenv. Look into README, there are instructions how to set up virtualenv and activate it. Once you have it active, just running py.test should execute the test suite and everything should pass. If something doesn't, ping me on IRC and we'll look at it. Once it works, arc diff develop should also not complain.

Third, when creating a diff, set #project-name as reviewers, e.g.:

Reviewers: #taskotron-trigger

Try to either create a new diff or update this one, according to the instructions :) Thanks.

I've put a generic version of the virtualenv instructions into https://fedoraproject.org/wiki/Taskotron_contribution_guide , along with a note to read the README for the specific project you're contributing to for more detailed instructions.