mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
ci: remove redundant AIDER_ANALYTICS_LOG environment variable
This commit is contained in:
committed by
Paul Gauthier (aider)
parent
f448d3e2db
commit
0b781174bd
1
.github/workflows/ubuntu-tests.yml
vendored
1
.github/workflows/ubuntu-tests.yml
vendored
@@ -40,6 +40,5 @@ jobs:
|
|||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
AIDER_ANALYTICS: false
|
AIDER_ANALYTICS: false
|
||||||
AIDER_ANALYTICS_LOG: /dev/null
|
|
||||||
run: |
|
run: |
|
||||||
pytest
|
pytest
|
||||||
|
|||||||
1
.github/workflows/windows-tests.yml
vendored
1
.github/workflows/windows-tests.yml
vendored
@@ -40,7 +40,6 @@ jobs:
|
|||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
AIDER_ANALYTICS: false
|
AIDER_ANALYTICS: false
|
||||||
AIDER_ANALYTICS_LOG: NUL
|
|
||||||
run: |
|
run: |
|
||||||
pytest
|
pytest
|
||||||
|
|
||||||
|
|||||||
@@ -9,5 +9,4 @@ testpaths =
|
|||||||
|
|
||||||
env =
|
env =
|
||||||
AIDER_ANALYTICS=false
|
AIDER_ANALYTICS=false
|
||||||
AIDER_ANALYTICS_LOG=/dev/null
|
|
||||||
|
|
||||||
|
|||||||
@@ -670,7 +670,6 @@ class TestMain(TestCase):
|
|||||||
def test_pytest_env_vars(self):
|
def test_pytest_env_vars(self):
|
||||||
# Verify that environment variables from pytest.ini are properly set
|
# 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"), "false")
|
||||||
self.assertEqual(os.environ.get("AIDER_ANALYTICS_LOG"), "/dev/null")
|
|
||||||
|
|
||||||
def test_invalid_edit_format(self):
|
def test_invalid_edit_format(self):
|
||||||
with GitTemporaryDirectory():
|
with GitTemporaryDirectory():
|
||||||
|
|||||||
Reference in New Issue
Block a user