-
-
Notifications
You must be signed in to change notification settings - Fork 14.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python312Packages.{blackdiag,seqdiag,actdiag,nwdiag}: drop nose dependency #330396
Changes from all commits
f62942d
1d4fbfc
09d128d
ac2e5fb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/src/actdiag/tests/test_generate_diagram.py b/src/actdiag/tests/test_generate_diagram.py | ||
index c5ee3d5..a74a151 100644 | ||
--- a/src/actdiag/tests/test_generate_diagram.py | ||
+++ b/src/actdiag/tests/test_generate_diagram.py | ||
@@ -16,16 +16,6 @@ | ||
import os | ||
|
||
from blockdiag.tests.test_generate_diagram import (get_diagram_files, | ||
- testcase_generator) | ||
+ test_generate_with_separate) | ||
|
||
-import actdiag.command | ||
|
||
- | ||
-def test_generate(): | ||
- mainfunc = actdiag.command.main | ||
- basepath = os.path.dirname(__file__) | ||
- files = get_diagram_files(basepath) | ||
- options = [] | ||
- | ||
- for testcase in testcase_generator(basepath, mainfunc, files, options): | ||
- yield testcase |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/src/nwdiag/tests/test_generate_diagram.py b/src/nwdiag/tests/test_generate_diagram.py | ||
index 2065208..ac9b096 100644 | ||
--- a/src/nwdiag/tests/test_generate_diagram.py | ||
+++ b/src/nwdiag/tests/test_generate_diagram.py | ||
@@ -16,16 +16,4 @@ | ||
import os | ||
|
||
from blockdiag.tests.test_generate_diagram import (get_diagram_files, | ||
- testcase_generator) | ||
- | ||
-import nwdiag.command | ||
- | ||
- | ||
-def test_generate(): | ||
- mainfunc = nwdiag.command.main | ||
- basepath = os.path.dirname(__file__) | ||
- files = get_diagram_files(basepath) | ||
- options = [] | ||
- | ||
- for testcase in testcase_generator(basepath, mainfunc, files, options): | ||
- yield testcase | ||
+ test_generate_with_separate) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/src/seqdiag/tests/test_generate_diagram.py b/src/seqdiag/tests/test_generate_diagram.py | ||
index cdd340f..a1dd2d4 100644 | ||
--- a/src/seqdiag/tests/test_generate_diagram.py | ||
+++ b/src/seqdiag/tests/test_generate_diagram.py | ||
@@ -13,19 +13,5 @@ | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
-import os | ||
- | ||
from blockdiag.tests.test_generate_diagram import (get_diagram_files, | ||
- testcase_generator) | ||
- | ||
-import seqdiag.command | ||
- | ||
- | ||
-def test_generate(): | ||
- mainfunc = seqdiag.command.main | ||
- basepath = os.path.dirname(__file__) | ||
- files = get_diagram_files(basepath) | ||
- options = [] | ||
- | ||
- for testcase in testcase_generator(basepath, mainfunc, files, options): | ||
- yield testcase | ||
+ test_generate_with_separate) | ||
Comment on lines
+11
to
+25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you help me understand what this patch is doing? What’s the difference in behaviour here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened issues:
node_icon.diag
assumes a network connection and Debian system blockdiag/blockdiag#184node_icon.diag
assumes a network connection and Debian system yuzutech/blockdiag#20