Skip to content

Commit 031daba

Browse files
committed
Rename philpep/testinfra to pytest-dev/pytest-testinfra
For name of docker images used during tests, just use "testinfra" prefix.
1 parent afda920 commit 031daba

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- stage: deploy
2121
name: deploy to pypi
2222
script: skip
23-
if: repo == "philpep/testinfra" AND tag IS present
23+
if: repo == "pytest-dev/pytest-testinfra" AND tag IS present
2424
deploy:
2525
provider: pypi
2626
username: "__token__"

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Pull requests
88
=============
99

1010
Regardless the review by a developer, a pull request will trigger automatic
11-
tests on https://travis-ci.org/philpep/testinfra/
11+
tests on https://travis-ci.org/pytest-dev/pytest-testinfra/
1212

1313
You're encouraged to setup a full test environment, to add tests and check if
1414
all the tests pass *before* submitting your pull request. To run the complete

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ a plugin to the powerful Pytest_ test engine
1717
License
1818
=======
1919

20-
`Apache License 2.0 <https://github.com/philpep/testinfra/blob/master/LICENSE>`_
20+
`Apache License 2.0 <https://github.com/pytest-dev/pytest-testinfra/blob/master/LICENSE>`_
2121

2222
The logo is licensed under the `Creative Commons NoDerivatives 4.0 License <https://creativecommons.org/licenses/by-nd/4.0/>`_
2323
If you have some other use in mind, contact us.
@@ -30,7 +30,7 @@ Install testinfra using pip::
3030
$ pip install pytest-testinfra
3131

3232
# or install the devel version
33-
$ pip install 'git+https://github.com/philpep/testinfra@master#egg=pytest-testinfra'
33+
$ pip install 'git+https://github.com/pytest-dev/pytest-testinfra@master#egg=pytest-testinfra'
3434

3535

3636
Write your first tests file to `test_myinfra.py`:

doc/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@
126126
# documentation.
127127
html_theme_options = {
128128
'logo': 'logo.svg',
129-
'github_user': 'philpep',
130-
'github_repo': 'testinfra',
129+
'github_user': 'pytest-dev',
130+
'github_repo': 'pytest-testinfra',
131131
'github_button': True,
132132
'travis_button': True,
133133
'extra_nav_links': {
134-
'View on github': 'https://github.com/philpep/testinfra',
134+
'View on github': 'https://github.com/pytest-dev/pytest-testinfra',
135135
},
136136
}
137137

doc/source/support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ following
77
Issue Tracker
88
~~~~~~~~~~~~~
99

10-
Checkout existing issues on `project issue tracker <https://github.com/philpep/testinfra/issues>`_
10+
Checkout existing issues on `project issue tracker <https://github.com/pytest-dev/pytest-testinfra/issues>`_
1111

1212
IRC
1313
~~~

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pytest-testinfra
3-
url = https://github.com/philpep/testinfra
3+
url = https://github.com/pytest-dev/pytest-testinfra
44
description = Test infrastructures
55
long_description = file:README.rst
66
long_description_content_type = text/x-rst

test/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def func(request):
108108
if image in DOCKER_IMAGES:
109109
cmd.append("--privileged")
110110

111-
cmd.append("philpep/testinfra:" + image)
111+
cmd.append("testinfra:" + image)
112112
docker_id = check_output(" ".join(cmd))
113113

114114
def teardown():
@@ -235,7 +235,7 @@ def build_image(build_failed, dockerfile, image, image_path):
235235
try:
236236
subprocess.check_call([
237237
"docker", "build", "-f", dockerfile,
238-
"-t", "philpep/testinfra:{0}".format(image),
238+
"-t", "testinfra:{0}".format(image),
239239
image_path])
240240
except Exception:
241241
build_failed.set()

0 commit comments

Comments
 (0)