diff --git a/.drone.yml b/.drone.yml index c8c6a86..a52ef0e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,6 @@ pipeline: - TOX_TESTENV_PASSENV=CFLAGS - POSTGRESQL_URI=postgresql://postgres@postgresql:5432/ commands: - - python tests/netrc2hgrc.py - pip install tox - tox -e "${TOXENV}-${DATABASE}" volumes: diff --git a/tests/netrc2hgrc.py b/tests/netrc2hgrc.py deleted file mode 100644 index 1d87fe6..0000000 --- a/tests/netrc2hgrc.py +++ /dev/null @@ -1,27 +0,0 @@ -import netrc -import os -try: - from configparser import ConfigParser, DuplicateSectionError -except ImportError: - from ConfigParser import ConfigParser, DuplicateSectionError - - -def main(): - netrc_ = netrc.netrc(os.path.expanduser('~/.netrc')) - config = ConfigParser() - try: - config.add_section('auth') - except DuplicateSectionError: - pass - hgrc = os.path.expanduser('~/.hgrc') - config.read(hgrc) - for host, (login, _, password) in netrc_.hosts.items(): - config.set('auth', host + '.prefix', host) - config.set('auth', host + '.username', login) - config.set('auth', host + '.password', password) - with open(hgrc, 'w') as fp: - config.write(fp) - - -if __name__ == '__main__': - main()