Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
should
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
17
Issues
17
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vidjil
should
Commits
74799434
Commit
74799434
authored
Apr 01, 2019
by
Mathieu Giraud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
should: release 2.0.0
parent
d677c945
Pipeline
#71772
passed with stages
in 12 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
CHANGELOG.md
CHANGELOG.md
+2
-2
README.md
README.md
+1
-1
src/should.py
src/should.py
+1
-1
No files found.
CHANGELOG.md
View file @
74799434
`should`
adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
.
##
x.x.x (2019-04-xx
)
##
2.0.0 (2019-04-01
)
-
(API change) Commands and tests can be interleaved, each test flushing the command outputs #36
-
(API change) Passing 'f' tests now trigger a fail (TODO-but-ok) #20
-
(new) 'a' tests, tests "allowed to fail", unless --fail-a #27
...
...
@@ -9,7 +9,7 @@
-
(new) options to select some tests --no-f, --no-a, --only-f, --only-a #28
-
(new) --timeout option #4
-
More portable colors, works both on light and dark background #35
-
Bugs closed: timeout on large outputs #19, --var
overriding from command line #21
-
Bugs closed: timeout on large outputs #19, --var
and --mod overriding from command line #21 #43
-
Code refactors #14 #36
-
Updated and improved documentation
...
...
README.md
View file @
74799434
...
...
@@ -19,7 +19,7 @@ and is intended to work on any command-line application
### Download
The archive
[
should-
1.0.0.tar.gz
](
https://gitlab.inria.fr/vidjil/should/-/archive/1.0.0/should-1
.0.0.tar.gz
)
The archive
[
should-
2.0.0.tar.gz
](
https://gitlab.inria.fr/vidjil/should/-/archive/2.0.0/should-2
.0.0.tar.gz
)
also includes this documentation with demo files.
In your projetcts, you only need the
[
should.py
](
https://gitlab.inria.fr/vidjil/should/raw/master/src/should.py
)
file.
...
...
src/should.py
View file @
74799434
...
...
@@ -26,7 +26,7 @@ if not (sys.version_info >= (3, 4)):
print
(
"Python >= 3.4 required"
)
sys
.
exit
(
1
)
__version_info__
=
(
'
1
'
,
'0'
,
'0'
)
__version_info__
=
(
'
2
'
,
'0'
,
'0'
)
__version__
=
'.'
.
join
(
__version_info__
)
import
re
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment