Skip to content

Commit

Permalink
Use GitHub for SVN tests
Browse files Browse the repository at this point in the history
colorstudy.com has been down for a few days now.
  • Loading branch information
McSinyx committed Aug 20, 2020
1 parent e1d489f commit 51d77e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Empty file.
2 changes: 1 addition & 1 deletion tests/functional/test_install_reqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def test_multiple_requirements_files(script, tmpdir, with_wheel):
-r {}-req.txt
""").format
(
local_checkout('svn+http://svn.colorstudy.com/INITools', tmpdir),
local_checkout('svn+https://github.com/ianb/INITools', tmpdir),
other_lib_name
),
)
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_install_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_install_subversion_usersite_editable_with_distribute(
'install', '--user', '-e',
'{checkout}#egg=initools'.format(
checkout=local_checkout(
'svn+http://svn.colorstudy.com/INITools', tmpdir)
'svn+https://github.com/ianb/INITools', tmpdir)
)
)
result.assert_installed('INITools', use_user_site=True)
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/test_uninstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def test_uninstall_editable_from_svn(script, tmpdir):
'install', '-e',
'{checkout}#egg=initools'.format(
checkout=local_checkout(
'svn+http://svn.colorstudy.com/INITools', tmpdir)
'svn+https://github.com/ianb/INITools', tmpdir)
),
)
result.assert_installed('INITools')
Expand Down Expand Up @@ -380,7 +380,7 @@ def test_uninstall_from_reqs_file(script, tmpdir):
"""
local_svn_url = local_checkout(
'svn+http://svn.colorstudy.com/INITools', tmpdir,
'svn+https://github.com/ianb/INITools', tmpdir,
)
script.scratch_path.joinpath("test-req.txt").write_text(
textwrap.dedent("""
Expand Down

0 comments on commit 51d77e6

Please sign in to comment.