mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-07 12:07:43 +00:00
refactor: rename project from Predix to NexQuant
Rename all source files, scripts, tests, documentation, and configuration from Predix/predix to NexQuant/nexquant across the entire codebase.
This commit is contained in:
@@ -16,10 +16,10 @@ PROJECT_ROOT = Path(__file__).parent.parent.parent
|
||||
sys.path.insert(0, str(PROJECT_ROOT))
|
||||
|
||||
|
||||
class TestPredixCLI:
|
||||
class TestNexQuantCLI:
|
||||
def test_cli_commands_available(self):
|
||||
import subprocess
|
||||
r = subprocess.run([sys.executable, "predix.py", "--help"], capture_output=True, text=True, timeout=10)
|
||||
r = subprocess.run([sys.executable, "nexquant.py", "--help"], capture_output=True, text=True, timeout=10)
|
||||
assert r.returncode == 0
|
||||
for cmd in ["evaluate", "top", "best", "portfolio", "build-strategies", "generate-strategies", "health"]:
|
||||
assert cmd in r.stdout.lower(), f"Missing command: {cmd}"
|
||||
|
||||
Reference in New Issue
Block a user