PySR / pysr /test /__main__.py
MilesCranmer's picture
WIP move `python -m pysr.test` call to click interface
3555cfd unverified
raw
history blame
432 Bytes
"""CLI for running PySR's test suite."""
import argparse
from . import *
if __name__ == "__main__":
# Get args:
parser = argparse.ArgumentParser()
parser.usage = "python -m pysr.test [tests...]"
parser.add_argument(
"test",
nargs="*",
help="DEPRECATED. Use `python -m pysr test [tests...]` instead."
# help="Test to run. One or more of 'main', 'env', 'jax', 'torch', 'cli'.",
)