Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 1cbbebe

Browse files
committed
Merge pull request #14 from apiaryio/wvi/py35-tox-and-raise
Python3.5 in tox tests and raise vs raise e
2 parents 341520c + dcdcb55 commit 1cbbebe

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Vilibald Wanča
3+
Copyright (c) 2015, 2016 Apiary Czech Republic, s.r.o.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,6 @@ More details about the integration test can be found in the
116116
<https://github.com/apiaryio/dredd-hooks-template>`_
117117

118118

119-
:copyright: Copyright 2015 by Vilibald Wanča.
119+
:copyright: Copyright (c) 2015 Apiary Czech Republic, s.r.o.
120120
:license: MIT, see LICENSE for details.
121121

bin/dredd-hooks-python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2015 Vilibald Wanča
4+
# Copyright (c) 2015, 2016 Apiary Czech Republic, s.r.o.
55
# License: MIT
66
#
77
from __future__ import print_function

dredd_hooks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2015 Vilibald Wanča
4+
# Copyright (c) 2015, 2016 Apiary Czech Republic, s.r.o.
55
# License: MIT
66
#
77

dredd_hooks/dredd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (c) 2015 Vilibald Wanča
3+
# Copyright (c) 2015, 2016 Apiary Czech Republic, s.r.o.
44
# License: MIT
55
#
66
from __future__ import print_function
@@ -229,4 +229,4 @@ def main(args):
229229
except Exception as e:
230230
print(e, file=sys.stderr)
231231
sys.stderr.flush()
232-
raise e
232+
raise

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
3-
envlist = py27, py325, py333, py34
3+
envlist = py27, py325, py333, py34, py35
44
[testenv]
55
commands=python -B -m unittest discover []
66
passenv=PYTHONDONTWRITEBYTECODE

0 commit comments

Comments
 (0)