~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Aaron Bentley
  • Date: 2006-12-13 15:08:39 UTC
  • mfrom: (2167.3.7 bzr.74759)
  • mto: This revision was merged to the branch mainline in revision 2183.
  • Revision ID: abentley@panoramicfeedback.com-20061213150839-plz4yi4zi343vkzf
Respect proxy environment settings (Vincent Ladeuil, #74759)

Show diffs side-by-side

added added

removed removed

Lines of Context:
793
793
            'BZREMAIL': None, # may still be present in the environment
794
794
            'EMAIL': None,
795
795
            'BZR_PROGRESS_BAR': None,
 
796
            # Proxies
 
797
            'http_proxy': None,
 
798
            'HTTP_PROXY': None,
 
799
            'https_proxy': None,
 
800
            'HTTPS_PROXY': None,
 
801
            'no_proxy': None,
 
802
            'NO_PROXY': None,
 
803
            'all_proxy': None,
 
804
            'ALL_PROXY': None,
 
805
            # Nobody cares about these ones AFAIK. So far at
 
806
            # least. If you do (care), please update this comment
 
807
            # -- vila 20061212
 
808
            'ftp_proxy': None,
 
809
            'FTP_PROXY': None,
796
810
        }
797
811
        self.__old_env = {}
798
812
        self.addCleanup(self._restoreEnvironment)