diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cbe620cf..9ce7dd3c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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: diff --git a/anise-py/tests/test_almanac.py b/anise-py/tests/test_almanac.py index c5d20592..2e86f2d0 100644 --- a/anise-py/tests/test_almanac.py +++ b/anise-py/tests/test_almanac.py @@ -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(): @@ -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))