Skip to content

Commit 0b78117

Browse files
committed
ci: remove redundant AIDER_ANALYTICS_LOG environment variable
1 parent f448d3e commit 0b78117

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

.github/workflows/ubuntu-tests.yml

-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,5 @@ jobs:
4040
- name: Run tests
4141
env:
4242
AIDER_ANALYTICS: false
43-
AIDER_ANALYTICS_LOG: /dev/null
4443
run: |
4544
pytest

.github/workflows/windows-tests.yml

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
- name: Run tests
4141
env:
4242
AIDER_ANALYTICS: false
43-
AIDER_ANALYTICS_LOG: NUL
4443
run: |
4544
pytest
4645

pytest.ini

-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ testpaths =
99

1010
env =
1111
AIDER_ANALYTICS=false
12-
AIDER_ANALYTICS_LOG=/dev/null
1312

tests/basic/test_main.py

-1
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,6 @@ def test_detect_urls_enabled(self):
670670
def test_pytest_env_vars(self):
671671
# Verify that environment variables from pytest.ini are properly set
672672
self.assertEqual(os.environ.get("AIDER_ANALYTICS"), "false")
673-
self.assertEqual(os.environ.get("AIDER_ANALYTICS_LOG"), "/dev/null")
674673

675674
def test_invalid_edit_format(self):
676675
with GitTemporaryDirectory():

0 commit comments

Comments
 (0)