You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like #6665 but looks like different tests are affected now. Haven't had time to track down exactly which ones. (Would be easier to run tests locally on master with xpassed handled as failures.)
I set the following in my local copy of setup.cfg in the master checkout:
[pytest]
xfail_strict=true
Then, I ran the tests with --remote-data option and found the following marked as xfail to not be failing anymore:
This is the test function in test_sky_coord_velocities.py:
@pytest.mark.xfaildeftest_transforms_diff(sc):
# note that arguably this *should* fail for the no-distance cases: 3D# information is necessary to truly solve this, hence the xfailtrans=sc.transform_to(PrecessedGeocentric(equinox='B1975'))
assertisinstance(trans.frame, PrecessedGeocentric)
git blame points to @eteq for that implementation.
# at the time of this writing, sky offset frames don't support velocities# TODO: make them actually work@pytest.mark.xfaildeftest_skyoffset_frame(sc):
sc.skyoffset_frame()
Like #6665 but looks like different tests are affected now.
Haven't had time to track down exactly which ones.(Would be easier to run tests locally onmaster
withxpassed
handled as failures.)I set the following in my local copy of
setup.cfg
in themaster
checkout:Then, I ran the tests with
--remote-data
option and found the following marked asxfail
to not be failing anymore:This is the test function in
test_sky_coord_velocities.py
:git blame
points to @eteq for that implementation.Also, as @bsipocz found:
p.s. https://travis-ci.org/astropy/astropy/jobs/332937023 reported 6
xpassed
but I only found 2 locally in 3.0RC1. Maybe #7065 would make tracking these down much easier.The text was updated successfully, but these errors were encountered: