Compare commits

..

No commits in common. "59f8adf8609ffaa4b97ec4cfc623828534a46dbf" and "e65e16d37b1a5d5a0316ef3b23e765a578823be6" have entirely different histories.

7 changed files with 3 additions and 27 deletions

View File

@ -8,7 +8,4 @@ charset = utf-8
[*.py] [*.py]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
[Makefile]
indent_size = tab

4
.gitignore vendored
View File

@ -1,5 +1,3 @@
.vscode .vscode
dist dist
src/*.egg-info src/*.egg-info
__pycache__
.pytest_cache

View File

@ -1,7 +0,0 @@
init:
pip install -r requirements.txt
test:
py.test tests
.PHONY: init test

View File

@ -18,4 +18,4 @@ if __name__ == '__main__':
'-n', '--notify', type=str, default=None, help="Apprise notification string." '-n', '--notify', type=str, default=None, help="Apprise notification string."
) )
args = parser.parse_args() args = parser.parse_args()

View File

View File

@ -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()