Compare commits
No commits in common. "59f8adf8609ffaa4b97ec4cfc623828534a46dbf" and "e65e16d37b1a5d5a0316ef3b23e765a578823be6" have entirely different histories.
59f8adf860
...
e65e16d37b
|
@ -8,7 +8,4 @@ charset = utf-8
|
|||
|
||||
[*.py]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[Makefile]
|
||||
indent_size = tab
|
||||
indent_size = 2
|
|
@ -1,5 +1,3 @@
|
|||
.vscode
|
||||
dist
|
||||
src/*.egg-info
|
||||
__pycache__
|
||||
.pytest_cache
|
||||
src/*.egg-info
|
7
Makefile
7
Makefile
|
@ -1,7 +0,0 @@
|
|||
init:
|
||||
pip install -r requirements.txt
|
||||
|
||||
test:
|
||||
py.test tests
|
||||
|
||||
.PHONY: init test
|
|
@ -18,4 +18,4 @@ if __name__ == '__main__':
|
|||
'-n', '--notify', type=str, default=None, help="Apprise notification string."
|
||||
)
|
||||
|
||||
args = parser.parse_args()
|
||||
args = parser.parse_args()
|
|
@ -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