Skip to content

Commit

Permalink
Move bethesda-specific tests under bethesda folder
Browse files Browse the repository at this point in the history
This more clearly indicates that the generic mod organizer currently has
no test coverage (besides what is tested implicitly through the bethedsa
controller).
  • Loading branch information
cyberrumor committed Dec 13, 2024
1 parent 8e2e29a commit cec2e30
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/common.py → test/bethesda/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AmmoController:
def __init__(self):
self.game = GAME
script_path = Path(__file__)
self.downloads_dir = script_path.parent / "Downloads"
self.downloads_dir = script_path.parent.parent / "Downloads"

def __enter__(self):
"""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
from pathlib import Path
import pytest
from common import (
mod_extracts_files,
mod_installs_files,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions test/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#!/usr/bin/env python3

0 comments on commit cec2e30

Please sign in to comment.