-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating docker compose by remove kibana and adding grafana; misc tes…
…ts fixes
- Loading branch information
1 parent
7e0fa45
commit 066570a
Showing
4 changed files
with
33 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# Copyright (C) 2024 Anaconda, Inc | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
import pytest | ||
from conda.base.context import context | ||
|
||
|
||
@pytest.fixture(autouse=True, scope="session") | ||
def reset_context() -> None: | ||
""" | ||
We reset the context to ignore local configuration | ||
""" | ||
|
||
context.__init__(search_path=()) |