diff --git a/.github/workflows/test-only.yml b/.github/workflows/test-only.yml index 4a7c0207..23e82aaf 100644 --- a/.github/workflows/test-only.yml +++ b/.github/workflows/test-only.yml @@ -76,8 +76,8 @@ jobs: name: debug-output retention-days: 3 path: | - /tmp/info.html - /tmp/info2.html + info.html + info2.html #export WEBDRIVER_URL=http://localhost:4444/wd/hub diff --git a/changedetectionio/tests/proxy_list/test_select_custom_proxy.py b/changedetectionio/tests/proxy_list/test_select_custom_proxy.py index d6312ea6..a80e4fa1 100644 --- a/changedetectionio/tests/proxy_list/test_select_custom_proxy.py +++ b/changedetectionio/tests/proxy_list/test_select_custom_proxy.py @@ -38,7 +38,7 @@ def test_select_custom(client, live_server): res = client.get(url_for("index")) assert b'Proxy Authentication Required' not in res.data - with open('/tmp/info2.html', 'wb') as f: + with open('info2.html', 'wb') as f: f.write(res.data) res = client.get( @@ -46,7 +46,7 @@ def test_select_custom(client, live_server): follow_redirects=True ) # We should see something via proxy - with open('/tmp/info.html', 'wb') as f: + with open('info.html', 'wb') as f: f.write(res.data) assert b'HEAD' in res.data