Skip to content

Commit

Permalink
CI standardize
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Aug 6, 2018
1 parent 087b30c commit 9c1a3b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_obs3.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env python
import pytest
from pytest import approx
import xarray
from pathlib import Path
from datetime import datetime
import georinex as gr
from numpy.testing import assert_allclose
#
R = Path(__file__).parent

Expand Down Expand Up @@ -47,7 +47,7 @@ def test_one_system():
obs = gr.rinexobs(R/'demo3.10o', use=u)
assert obs.equals(truth)

assert_allclose(obs.position, [4789028.4701, 176610.0133, 4195017.031])
assert obs.position == approx([4789028.4701, 176610.0133, 4195017.031])


def test_multi_system():
Expand Down

0 comments on commit 9c1a3b7

Please sign in to comment.