Commit ac0d293 1 parent 1ebfb48 commit ac0d293 Copy full SHA for ac0d293
File tree 3 files changed +3
-7
lines changed
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 44
44
cd ..
45
45
python -m venv testenv
46
46
testenv/bin/pip install pytest pytest-astropy pytest-tornasync lcviz/dist/*.whl
47
- testenv/bin/python -c "import lcviz; lcviz.test(remote_data=True)"
47
+ testenv/bin/pytest -p no:warnings --astropy-header --remote-data --pyargs lcviz
48
48
49
49
# NOTE: Do not run this part for PR testing.
50
50
- name : Publish distribution 📦 to PyPI
Original file line number Diff line number Diff line change 3
3
4
4
* Add support for loading TESS DVT files. [#164]
5
5
6
+ * Removed ``lcviz.test() ``. Use ``pytest --pyargs lcviz <options>" `` instead
7
+ to test your copy of ``lcviz ``. [#172]
6
8
7
9
1.0.0 (12-02-2024)
8
10
------------------
Original file line number Diff line number Diff line change 1
1
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2
2
3
- import os
4
- from astropy .tests .runner import TestRunner
5
-
6
3
try :
7
4
from .version import version as __version__
8
5
except ImportError :
18
15
from .tools import * # noqa
19
16
from .viewers import * # noqa
20
17
from .helper import * # noqa
21
-
22
- # Create the test function for self test
23
- test = TestRunner .make_test_runner_in (os .path .dirname (__file__ ))
You can’t perform that action at this time.
0 commit comments