mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
23 lines
752 B
Python
23 lines
752 B
Python
"""Test if everything is installed correctly"""
|
|
import _quicktex
|
|
import pytest
|
|
|
|
import quicktex
|
|
|
|
|
|
class TestInstall:
|
|
@pytest.mark.skipif(_quicktex._debug_build, reason="Debug builds dont have valid version strings")
|
|
def test_version(self):
|
|
"""Test if the extension module version matches what setuptools returns"""
|
|
try:
|
|
from importlib import metadata
|
|
except ImportError:
|
|
# Python < 3.8, so we cant get the metadata, so just check if it exists
|
|
assert quicktex.__version__
|
|
print(f'Cannot check version in python < 3.8. __version__ is {quicktex.__version__}')
|
|
return
|
|
|
|
version = metadata.version('quicktex')
|
|
|
|
assert version == quicktex.__version__
|