Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mat2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tails
mat2
Commits
bd357b85
Commit
bd357b85
authored
6 years ago
by
Julien (jvoisin) Voisin
Browse files
Options
Downloads
Patches
Plain Diff
Remove a useless option that was never implemented anyway
parent
8c21006e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mat2
+1
-3
1 addition, 3 deletions
mat2
tests/test_climat2.py
+2
-9
2 additions, 9 deletions
tests/test_climat2.py
with
3 additions
and
12 deletions
mat2
+
1
−
3
View file @
bd357b85
...
...
@@ -38,10 +38,8 @@ def create_arg_parser():
help
=
'
list all supported fileformats
'
)
info
=
parser
.
add_mutually_exclusive_group
()
info
.
add_argument
(
'
-c
'
,
'
--check
'
,
action
=
'
store_true
'
,
help
=
'
check if a file is free of harmful metadatas
'
)
info
.
add_argument
(
'
-s
'
,
'
--show
'
,
action
=
'
store_true
'
,
help
=
'
list
all the
harmful metadata
of a file
without removing them
'
)
help
=
'
list harmful metadata
detectable by MAT2
without removing them
'
)
info
.
add_argument
(
'
-L
'
,
'
--lightweight
'
,
action
=
'
store_true
'
,
help
=
'
remove SOME metadata
'
)
return
parser
...
...
This diff is collapsed.
Click to expand it.
tests/test_climat2.py
+
2
−
9
View file @
bd357b85
...
...
@@ -8,12 +8,12 @@ class TestHelp(unittest.TestCase):
def
test_help
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--help
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
usage: mat2 [-h] [-v] [-l] [
-c |
-s | -L] [files [files ...]]
'
,
stdout
)
self
.
assertIn
(
b
'
usage: mat2 [-h] [-v] [-l] [-s | -L] [files [files ...]]
'
,
stdout
)
def
test_no_arg
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
usage: mat2 [-h] [-v] [-l] [
-c |
-s | -L] [files [files ...]]
'
,
stdout
)
self
.
assertIn
(
b
'
usage: mat2 [-h] [-v] [-l] [-s | -L] [files [files ...]]
'
,
stdout
)
class
TestVersion
(
unittest
.
TestCase
):
...
...
@@ -23,13 +23,6 @@ class TestVersion(unittest.TestCase):
self
.
assertTrue
(
stdout
.
startswith
(
b
'
MAT2
'
))
class
TestExclusiveArgs
(
unittest
.
TestCase
):
def
test_version
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
-s
'
,
'
-c
'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
stdout
,
stderr
=
proc
.
communicate
()
self
.
assertIn
(
b
'
mat2: error: argument -c/--check: not allowed with argument -s/--show
'
,
stderr
)
class
TestReturnValue
(
unittest
.
TestCase
):
def
test_nonzero
(
self
):
ret
=
subprocess
.
call
([
'
./mat2
'
,
'
./mat2
'
],
stdout
=
subprocess
.
DEVNULL
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment