Skip to content

Commit

Permalink
version 1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
houluy committed Oct 14, 2020
1 parent 4c30d2b commit f3b5872
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chessboard/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.6'
__version__ = '1.3.7'
2 changes: 1 addition & 1 deletion chessboardCLI.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: chessboardCLI
Version: 1.3.6
Version: 1.3.7
Summary: Chessboard generator in command line
Home-page: https://github.com/houluy/chessboard
Author: Houlu
Expand Down
Binary file added dist/chessboardCLI-1.3.7-py3-none-any.whl
Binary file not shown.
Binary file added dist/chessboardCLI-1.3.7.tar.gz
Binary file not shown.
7 changes: 7 additions & 0 deletions tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import unittest
import tests

suite = unittest.TestSuite()
suite.addTest(tests.TestChessboard("test_process_ipt"))
runner = unittest.TextTestRunner()
runner.run(suite)
3 changes: 3 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from tests.test_chessboard import *
from tests.test_funcs import *

0 comments on commit f3b5872

Please sign in to comment.