Skip to content

Commit

Permalink
Add LT validation test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Jan 8, 2024
1 parent b230fad commit 90b6f40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ jobs:
cargo llvm-cov test --workspace --exclude anise-gui --exclude anise-py --no-report validate_iau_rotation_to_parent -- --nocapture --ignored
cargo llvm-cov test --workspace --exclude anise-gui --exclude anise-py --no-report validate_bpc_to_iau_rotations -- --nocapture --ignored
cargo llvm-cov test --workspace --exclude anise-gui --exclude anise-py --no-report validate_jplde_de440s --features spkezr_validation -- --nocapture --ignored
cargo llvm-cov test --workspace --exclude anise-gui --exclude anise-py --no-report validate_jplde_de440s_aberration_lt --features spkezr_validation -- --nocapture --ignored
cargo llvm-cov test --workspace --exclude anise-gui --exclude anise-py --no-report validate_hermite_type13_from_gmat --features spkezr_validation -- --nocapture --ignored
cargo llvm-cov report --lcov > lcov.txt
env:
Expand Down
4 changes: 2 additions & 2 deletions anise-py/tests/test_almanac.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from anise.astro.constants import Frames
from anise.time import Epoch

from os import env
from os import environ


def test_state_transformation():
Expand All @@ -15,7 +15,7 @@ def test_state_transformation():
but the data is loaded from the remote servers
"""

if env.get("CI", False):
if environ.get("CI", False):
# Load from meta kernel to not use Git LFS quota
data_path = Path(__file__).parent.joinpath("..", "..", "data", "default_meta.dhall")
meta = MetaAlmanac(str(data_path))
Expand Down

0 comments on commit 90b6f40

Please sign in to comment.