Skip to content

Commit

Permalink
Make sure http_proxy is not set when testing URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
laeti-tia committed Mar 18, 2024
1 parent ad02d0b commit 29390ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python-pscheduler/pscheduler/tests/psurl_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@
"""

import unittest
import os

# Remove any proxy that might be in the way of testing
os.environ.pop('http_proxy')
os.environ.pop('https_proxy')

from base_test import PschedTestBase

from pscheduler.psurl import *


class TestPsurl(PschedTestBase):
"""
URL tests.
Expand Down

0 comments on commit 29390ae

Please sign in to comment.