Skip to content

Commit 948fc16

Browse files
final touch
1 parent 86376bb commit 948fc16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci_run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test
22

33
on:
44
push:
5-
# pull_request:
5+
pull_request:
66

77
concurrency:
88
group: ${{ github.workflow }}-${{ github.ref }}

pystrometry/tests/test_get_ephemeris.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_get_ephemeris_valid_input():
2424
# Call the function
2525
result = get_ephemeris(center=center, target=target, start_time=start_time, stop_time=stop_time, step_size=step_size)
2626
assert os.path.isfile(out_file), f"Expected output file {out_file} does not exist."
27-
27+
2828
# Validate the result
2929
assert isinstance(result, Table), "Result should be an Astropy Table"
3030
assert len(result) > 0, "Result table should not be empty"

0 commit comments

Comments
 (0)