-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add methods to UIFormWidget for saving and restoring widget states (#64)
* Use pip install instead of setup.py install * begin work on saving states of widgets * Add working unit test * Always convert version to pep440 * only test dialog if we can connect to display * improve skip condition for GUI test * improve widget state interface * Add more skips * Test if we fail gh-a if test not present * Test if try-except makes test fail * Test if try-except makes test fail * Try excepthook code * Add exec to see if it makes a difference * Add many more unit tests * alter test for whether to run the test * Add example of dialog which restores its state * Add many more unit tests * Add multiple radiobuttons to example * Add authors * Update CHANGELOG.md * Update CHANGELOG.md * Update eqt/ui/UIFormWidget.py Co-authored-by: Edoardo Pasca <[email protected]> * Update eqt/ui/UIFormWidget.py Co-authored-by: Edoardo Pasca <[email protected]> * Apply suggestions from code review Co-authored-by: Edoardo Pasca <[email protected]> * Apply suggestions from code review Co-authored-by: Edoardo Pasca <[email protected]> * update docstrings re: code review * further docstring update Co-authored-by: Edoardo Pasca <[email protected]>
- Loading branch information
1 parent
3efa58c
commit 87f6fe7
Showing
8 changed files
with
1,539 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
cd %RECIPE_DIR%\.. | ||
|
||
%PYTHON% setup.py install | ||
pip install . |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
|
||
#$PYTHON -m pip install eqt --no-deps | ||
cd $RECIPE_DIR/.. | ||
$PYTHON setup.py install | ||
pip install . |
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
Oops, something went wrong.