-
-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Remove logging, handle test warnings, etc #922
Conversation
|
||
|
||
@pytest.fixture | ||
def simulated_spectra(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved the fixture here. This way, you don't have to import it and flake8 won't complain about the import.
pass | ||
|
||
|
||
if sys.version_info < tuple((int(val) for val in __minimum_python_version__.split('.'))): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need this. This is now defined in setup.cfg
.
@@ -16,7 +15,7 @@ | |||
from ..registers import data_loader | |||
from ..parsing_utils import _fits_identify_by_name, read_fileobj_or_hdulist | |||
|
|||
__all__ = ['spec_identify', 'spec_loader'] | |||
__all__ = ['identify_pfs_spec', 'pfs_spec_loader'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure how this ever worked. This is a real bug.
specutils/tests/test_analysis.py
Outdated
@@ -87,19 +86,6 @@ def test_line_flux_masked(): | |||
assert quantity_allclose(result.value, 720.61116, atol=0.001) | |||
|
|||
|
|||
def test_line_flux_uncertainty(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a duplicate test.
* Move pytest fixture from tests/spectral_examples.py to conftest.py * Remove unused imports and check for that in tox.ini * Fix broken __all__ and check for that in tox.ini * Move flake8 setting from tox.ini to setup.cfg for consistent behavior between IDE and CI. Change list from select to ignore. Fix some. * Enable xfail_strict=true in testing. * Other minor clean-ups
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I was getting tired of logging
in different packages interfering with each other in weird ways, and I'm fine with a verbose
flag for printing extra information. I appreciate the extra cleanup as well.
This PR accomplishes the following:
tests/spectral_examples.py
toconftest.py
tox.ini
__all__
and check for that intox.ini
flake8
setting fromtox.ini
tosetup.cfg
for consistent behavior between IDE and CI. Change list from select to ignore. Fix some.xfail_strict=true
in testing.xref spacetelescope/jdaviz#1084