chore(tests): Also run tests on Python 2.6

This commit is contained in:
Adrien Vergé
2017-07-04 22:07:32 +02:00
parent 7a8cfeed6d
commit 1a961bd4b0
8 changed files with 41 additions and 10 deletions

View File

@@ -16,7 +16,12 @@
import os
import tempfile
import unittest
import sys
try:
assert sys.version_info >= (2, 7)
import unittest
except:
import unittest2 as unittest
import yaml