I've faced with this issue during preparing this project for Guix when update Astropy to 6.0.0 requires it as external package.
According to tox.ini requires astropy itself to run tests:
This project:
|
deps = |
|
git+https://github.com/astropy/astropy |
|
extras = |
|
test |
|
|
|
commands = |
|
pip freeze |
|
pytest --pyargs astropy.coordinates -m "not hypothesis" {posargs} |
|
pytest --pyargs astropy.time -m "not hypothesis" {posargs} |
|
pytest --pyargs astropy.utils.iers -m "not hypothesis" {posargs} |
Astropy project:
https://github.com/astropy/astropy/blob/9ce2087bd81f9502c4fdb87168d1cccd1aee4f53/pyproject.toml#L41-L47
Is there any other way to test the project without astropy?
Thanks.
Oleg
I've faced with this issue during preparing this project for Guix when update Astropy to 6.0.0 requires it as external package.
According to
tox.inirequiresastropyitself to run tests:This project:
astropy-iers-data/tox.ini
Lines 9 to 18 in 1198afe
Astropy project:
https://github.com/astropy/astropy/blob/9ce2087bd81f9502c4fdb87168d1cccd1aee4f53/pyproject.toml#L41-L47
Is there any other way to test the project without
astropy?Thanks.
Oleg