-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated io.interface_utils to be compatible with new ipyfilechooser v…
…ersion. Added test to catch braking changes in the future.
- Loading branch information
Showing
8 changed files
with
65 additions
and
39 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,2 +1,2 @@ | ||
version = '0.0.6' | ||
time = '2021-09-19 16:08:00' | ||
version = '0.0.7' | ||
time = '2021-10-22 16:08:00' |
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
Empty file.
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,21 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Created on Fri Oct 22 2021 | ||
@author: Gerd Duscher | ||
""" | ||
|
||
from __future__ import division, print_function, unicode_literals, absolute_import | ||
import unittest | ||
import sys | ||
|
||
sys.path.append("../../sidpy/") | ||
from sidpy.io import interface_utils | ||
|
||
|
||
class TestInterface(unittest.TestCase): | ||
|
||
def test_open_file_dialog(self): | ||
file_widget = interface_utils.open_file_dialog() | ||
print(file_widget._use_dir_icons) | ||
self.assertTrue(file_widget.selected is None) |