I think we should probably disable our `@skip_unle...
# development
h
I think we should probably disable our
@skip_unless_python27_present
et al decorators in CI - we should eagerly error in that case, rather than skipping a test. Thoughts on simply deleting them outright? It will make it less likely
./pants test ::
works for desktop developers, but maybe that's fine? Otherwise, we can add a check
if not "CI" in os.environ
w
rather than
skip
, maybe refactor them to
assert_*_present
? but yea, as long as it’s a relatively small list of interpreters i’d be ok with that.
👍 1