• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MilesCranmer / PySR / 5034145932

pending completion
5034145932

push

github

GitHub
Merge pull request #298 from w2ll2am/master

13 of 17 new or added lines in 3 files covered. (76.47%)

947 of 1063 relevant lines covered (89.09%)

0.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

92.31
/pysr/_cli/main.py
1
import click
1✔
2
from ..julia_helpers import install
1✔
3

4

5
@click.group("pysr")
1✔
6
@click.pass_context
1✔
7
def pysr(context):
1✔
8
    ctx = context
1✔
9

10

11
@pysr.command("install", help="Install Julia dependencies for PySR.")
1✔
12
@click.option(
1✔
13
    "-p",
14
    "julia_project",
15
    "--project",
16
    default=None,
17
    type=str,
18
    help="Install in a specific Julia project (e.g., a local copy of SymbolicRegression.jl).",
19
    metavar="PROJECT_DIRECTORY",
20
)
21
@click.option("-q", "--quiet", is_flag=True, default=False, help="Disable logging.")
1✔
22
@click.option(
1✔
23
    "--precompile",
24
    "precompile",
25
    flag_value=True,
26
    default=None,
27
    help="Force precompilation of Julia libraries.",
28
)
29
@click.option(
1✔
30
    "--no-precompile",
31
    "precompile",
32
    flag_value=False,
33
    default=None,
34
    help="Disable precompilation.",
35
)
36
def _install(julia_project, quiet, precompile):
1✔
NEW
37
    install(julia_project, quiet, precompile)
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc