We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef05ec4 commit d9330e7Copy full SHA for d9330e7
test/TestPython.m
@@ -1,10 +1,6 @@
1
classdef TestPython < matlab.unittest.TestCase
2
3
methods (TestClassSetup)
4
-function check_python_available(tc)
5
-tc.assumeTrue(stdlib.has_python(), "Python is not available, skipping tests")
6
-end
7
-
8
function pkg_path(tc)
9
p = matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))));
10
tc.applyFixture(p)
@@ -15,6 +11,8 @@ function pkg_path(tc)
15
11
methods (Test, TestTags = "python")
16
12
17
13
function test_is_char_device(tc)
14
+is_capable(tc, @stdlib.python.is_char_device)
+
18
% /dev/stdin may not be available on CI systems
19
if ispc
20
n = "NUL";
0 commit comments