Compare commits
No commits in common. "59f8adf8609ffaa4b97ec4cfc623828534a46dbf" and "e65e16d37b1a5d5a0316ef3b23e765a578823be6" have entirely different histories.
59f8adf860
...
e65e16d37b
|
@ -9,6 +9,3 @@ charset = utf-8
|
||||||
[*.py]
|
[*.py]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
[Makefile]
|
|
||||||
indent_size = tab
|
|
|
@ -1,5 +1,3 @@
|
||||||
.vscode
|
.vscode
|
||||||
dist
|
dist
|
||||||
src/*.egg-info
|
src/*.egg-info
|
||||||
__pycache__
|
|
||||||
.pytest_cache
|
|
7
Makefile
7
Makefile
|
@ -1,7 +0,0 @@
|
||||||
init:
|
|
||||||
pip install -r requirements.txt
|
|
||||||
|
|
||||||
test:
|
|
||||||
py.test tests
|
|
||||||
|
|
||||||
.PHONY: init test
|
|
|
@ -1,12 +0,0 @@
|
||||||
from subprocess import CalledProcessError
|
|
||||||
import unittest
|
|
||||||
|
|
||||||
class FirstTestClass(unittest.TestCase):
|
|
||||||
|
|
||||||
def test_argument_required(self):
|
|
||||||
import subprocess
|
|
||||||
with self.assertRaises(CalledProcessError):
|
|
||||||
subprocess.check_output(['python', 'manga_up'])
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
unittest.main()
|
|
Loading…
Reference in New Issue