[Python-modules-commits] [dulwich] 04/09: Add basic test for release_robot.

Jelmer Vernooij jelmer at moszumanska.debian.org
Sun Dec 25 13:51:23 UTC 2016


This is an automated email from the git hooks/post-receive script.

jelmer pushed a commit to branch master
in repository dulwich.

commit 4f3d06094813967171af73fb23e373a1f057dbb2
Author: Jelmer Vernooij <jelmer at jelmer.uk>
Date:   Sun Dec 25 13:24:29 2016 +0000

    Add basic test for release_robot.
---
 NEWS                                  |  5 +++++
 dulwich/contrib/release_robot.py      | 19 +++++++++++++++++
 dulwich/contrib/test_release_robot.py | 39 +++++++++++++++++++++++++++++++++++
 3 files changed, 63 insertions(+)

diff --git a/NEWS b/NEWS
index 7c38862..9d687e6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
 0.16.1	UNRELEASED
 
+ BUG FIXES
+
+  * Fix python3 compatibility for dulwich.contrib.release_robot.
+    (Jelmer Vernooij)
+
 0.16.0	2016-12-24
 
  IMPROVEMENTS
diff --git a/dulwich/contrib/release_robot.py b/dulwich/contrib/release_robot.py
index ea951db..accc972 100644
--- a/dulwich/contrib/release_robot.py
+++ b/dulwich/contrib/release_robot.py
@@ -1,3 +1,22 @@
+# release_robot.py
+#
+# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
+# General Public License as public by the Free Software Foundation; version 2.0
+# or (at your option) any later version. You can redistribute it and/or
+# modify it under the terms of either of these two licenses.
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# You should have received a copy of the licenses; if not, see
+# <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
+# and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
+# License, Version 2.0.
+#
+
 """Determine last version string from tags.
 
 Alternate to `Versioneer <https://pypi.python.org/pypi/versioneer/>`_ using
diff --git a/dulwich/contrib/test_release_robot.py b/dulwich/contrib/test_release_robot.py
new file mode 100644
index 0000000..3174004
--- /dev/null
+++ b/dulwich/contrib/test_release_robot.py
@@ -0,0 +1,39 @@
+# release_robot.py
+#
+# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
+# General Public License as public by the Free Software Foundation; version 2.0
+# or (at your option) any later version. You can redistribute it and/or
+# modify it under the terms of either of these two licenses.
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# You should have received a copy of the licenses; if not, see
+# <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
+# and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
+# License, Version 2.0.
+#
+
+"""Tests for release_robot."""
+
+import re
+import unittest
+
+from dulwich.contrib.release_robot import PATTERN
+
+
+class TagPatternTests(unittest.TestCase):
+
+    def test_tag_pattern(self):
+        test_cases = {
+            '0.3': '0.3', 'v0.3': '0.3', 'release0.3': '0.3', 'Release-0.3': '0.3',
+            'v0.3rc1': '0.3rc1', 'v0.3-rc1': '0.3-rc1', 'v0.3-rc.1': '0.3-rc.1',
+            'version 0.3': '0.3', 'version_0.3_rc_1': '0.3_rc_1', 'v1': '1',
+            '0.3rc1': '0.3rc1'
+        }
+        for tc, version in test_cases.items():
+            m = re.match(PATTERN, tc)
+            self.assertEqual(m.group(1), version)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/dulwich.git



More information about the Python-modules-commits mailing list