Skip to content

Commit

Permalink
ci: remove redundant AIDER_ANALYTICS_LOG environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Nov 30, 2024
1 parent f448d3e commit 0b78117
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ubuntu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,5 @@ jobs:
- name: Run tests
env:
AIDER_ANALYTICS: false
AIDER_ANALYTICS_LOG: /dev/null
run: |
pytest
1 change: 0 additions & 1 deletion .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
- name: Run tests
env:
AIDER_ANALYTICS: false
AIDER_ANALYTICS_LOG: NUL
run: |
pytest
1 change: 0 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ testpaths =

env =
AIDER_ANALYTICS=false
AIDER_ANALYTICS_LOG=/dev/null

1 change: 0 additions & 1 deletion tests/basic/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,6 @@ def test_detect_urls_enabled(self):
def test_pytest_env_vars(self):
# Verify that environment variables from pytest.ini are properly set
self.assertEqual(os.environ.get("AIDER_ANALYTICS"), "false")
self.assertEqual(os.environ.get("AIDER_ANALYTICS_LOG"), "/dev/null")

def test_invalid_edit_format(self):
with GitTemporaryDirectory():
Expand Down

0 comments on commit 0b78117

Please sign in to comment.