Skip to content
This repository has been archived by the owner on Apr 10, 2018. It is now read-only.

Commit

Permalink
Use https when downloading sample databases
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwilliam committed Nov 12, 2013
1 parent 412c8c7 commit 932fea3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -7,7 +7,7 @@ python:
install:
- "pip install nose"
- "pip install python-coveralls"
- "curl -s http://www.defunct.cc/maxmind-geoip-samples.tar.gz | tar -xzC tests/"
- "curl -s https://www.defunct.cc/maxmind-geoip-samples.tar.gz | tar -xzC tests/"
script:
- coverage run --source=pygeoip setup.py nosetests
after_success:
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPER.md
Expand Up @@ -12,7 +12,7 @@ Running the tests requires a couple of sample databases found on the
link below.

Maxmind sample databases for testing can be downloaded here:
http://www.defunct.cc/maxmind-geoip-samples.tar.gz (58 MB)
https://www.defunct.cc/maxmind-geoip-samples.tar.gz (58 MB)

Extract the tarball in the tests directory and run `tox` from the root directory.

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -15,7 +15,7 @@ pushd $(dirname $0)

if [ ! -d tests/data ]; then
pushd tests
wget http://www.defunct.cc/maxmind-geoip-samples.tar.gz
wget https://www.defunct.cc/maxmind-geoip-samples.tar.gz
tar -zxvf maxmind-geoip-samples.tar.gz
unlink maxmind-geoip-samples.tar.gz
popd
Expand Down

0 comments on commit 932fea3

Please sign in to comment.