-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrei Neagu
committed
Mar 19, 2024
1 parent
3ea2298
commit 1ef6b75
Showing
7 changed files
with
346 additions
and
69 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# from jupyter | ||
|
||
psutil | ||
tornado | ||
|
||
# testing | ||
|
||
pytest | ||
pytest-asyncio | ||
pytest-mock | ||
requests | ||
tenacity |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile --output-file=requirements/test.txt requirements/test.in | ||
# | ||
certifi==2024.2.2 | ||
# via requests | ||
charset-normalizer==3.3.2 | ||
# via requests | ||
exceptiongroup==1.2.0 | ||
# via pytest | ||
idna==3.6 | ||
# via requests | ||
iniconfig==2.0.0 | ||
# via pytest | ||
packaging==24.0 | ||
# via pytest | ||
pluggy==1.4.0 | ||
# via pytest | ||
psutil==5.9.8 | ||
# via -r requirements/test.in | ||
pytest==8.1.1 | ||
# via | ||
# -r requirements/test.in | ||
# pytest-asyncio | ||
# pytest-mock | ||
pytest-asyncio==0.23.6 | ||
# via -r requirements/test.in | ||
pytest-mock==3.12.0 | ||
# via -r requirements/test.in | ||
requests==2.31.0 | ||
# via -r requirements/test.in | ||
tenacity==8.2.3 | ||
# via -r requirements/test.in | ||
tomli==2.0.1 | ||
# via pytest | ||
tornado==6.4 | ||
# via -r requirements/test.in | ||
urllib3==2.2.1 | ||
# via requests |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import sys | ||
from pathlib import Path | ||
|
||
_CURRENT_DIR = ( | ||
Path(sys.argv[0] if __name__ == "__main__" else __file__).resolve().parent | ||
) | ||
|
||
|
||
def allow_imports() -> None: | ||
path = (_CURRENT_DIR / "..." / ".." / ".." / "docker").absolute().resolve() | ||
sys.path.append(f"{path}") | ||
|
||
import activity_monitor |
Empty file.
Oops, something went wrong.