Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
doxec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frank Sauerburger
doxec
Commits
0aeddf1e
There was a problem fetching the pipeline mini graph.
Commit
0aeddf1e
authored
7 years ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Increment version to 0.1.1
Fixing bug
#4
leads to this increment.
parent
8a12951a
Branches
5-alternative-shell-in-console-operation
7-new-operations
Branches containing commit
No related tags found
1 merge request
!1
Bug/return code
Pipeline
#
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/doxec
+7
-0
7 additions, 0 deletions
bin/doxec
doxec/__init__.py
+2
-0
2 additions, 0 deletions
doxec/__init__.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
10 additions
and
1 deletion
bin/doxec
+
7
−
0
View file @
0aeddf1e
...
...
@@ -15,12 +15,19 @@ if __name__ == "__main__":
default
=
"
markdown
"
,
help
=
"
The syntax parser to be used for the listed files.
"
)
parser
.
add_argument
(
"
--version
"
,
action
=
"
store_true
"
,
help
=
"
Prints the version of the doxec package and exits.
"
)
parser
.
add_argument
(
"
documents
"
,
metavar
=
"
DOCUMENT
"
,
nargs
=
"
+
"
,
default
=
[],
help
=
"
A document from which the code examples should be parsed and
"
"
executed
"
)
args
=
parser
.
parse_args
()
if
args
.
version
:
print
(
"
Doxec package version: %s
"
%
doxec
.
__version__
)
sys
.
exit
(
0
)
parser
=
doxec
.
parser
[
args
.
syntax
]
def
monitor
(
op
,
exception
):
...
...
This diff is collapsed.
Click to expand it.
doxec/__init__.py
+
2
−
0
View file @
0aeddf1e
...
...
@@ -3,6 +3,8 @@ import abc
import
re
import
subprocess
__version__
=
"
0.1.1
"
class
TestException
(
Exception
):
"""
This exception should be raised, if an operation performed tests and one
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
0aeddf1e
...
...
@@ -5,7 +5,7 @@ from setuptools import setup
setup
(
name
=
"
doxec
"
,
version
=
"
0.1.
0
"
,
version
=
"
0.1.
1
"
,
author
=
"
Frank Sauerburger
"
,
author_email
=
"
frank@sauerburger.com
"
,
description
=
(
"
Run documentation and test whether the examples work.
"
),
...
...
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