-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TRR tests implementation in the core nectarchain module (#173)
* move TRR test suite into nectarchain * add h5py dependency * add lmfit to pyproject.toml * fix docstring * rebase on main * Fix Sphinx intermapping with PyQt documentation * Switch back to PyQt5 instead of PyQt6, to be able to launch the TRR GUI, on Linux at least * To try to ensure that the TRR GUI is launchable both from Linux and macOS * very simple unit test for TRR * change test_gui to work on macos * remove pyqt6 * install pyqt5 in CI for mac * sqlite issue * check pyqt installation in CI * install pyqt with brew before mamba installation on mac * add --no-deps to pip install nectarchain for pytest * add cleaner pip installation of nectarchain * clean separation of the installation through pip and mamba * tomlib -> toml for python < 3.11 * fix pip install * clean * Remove any use of PyQt6 in TRR GUI * Try to re-simplify the installation of dependencies for CI tests * Upload codecov report only for 1 platform/python version/installation method, not for all of them. --------- Co-authored-by: guillaume.grolleron <[email protected]> Co-authored-by: jlenain <[email protected]>
- Loading branch information
1 parent
f2df538
commit b641a90
Showing
18 changed files
with
629 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from .gui import TestRunner | ||
|
||
__all__ = [ | ||
"TestRunner", | ||
] |
Oops, something went wrong.