Made vigil into a package with a setup.py file.
|
|
@ -5,12 +5,12 @@
|
|||
|
||||
|
||||
import subprocess
|
||||
import tools
|
||||
import vigil.tools
|
||||
|
||||
|
||||
dist_id = tools.get_distro_id()
|
||||
dist_id = vigil.tools.get_distro_id()
|
||||
pip_deps, pip3_deps, dist_deps = set(), set(), set()
|
||||
for dependency in tools.dependencies(dist_id):
|
||||
for dependency in vigil.tools.dependencies(dist_id):
|
||||
if "/" in dependency:
|
||||
pip_version, pip_dependency = dependency.split("/")
|
||||
(pip_deps if pip_version == "pip" else pip3_deps).add(pip_dependency)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
# Licensed under the Artistic License 2.0.
|
||||
|
||||
|
||||
import tools
|
||||
import vigil.tools as tools
|
||||
|
||||
|
||||
def tool_markup(tool):
|
||||
|
|
|
|||
23
setup.py
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# Copyright (C) 2017 Andrew Hamilton. All rights reserved.
|
||||
# Licensed under the Artistic License 2.0.
|
||||
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
|
||||
setup(name="vigil",
|
||||
version="17.06",
|
||||
description=("Vigil maintains an up-to-date set of reports for every"
|
||||
" file in a codebase."),
|
||||
url="https://github.com/ahamilton/vigil",
|
||||
author="Andrew Hamilton",
|
||||
license="Artistic 2.0",
|
||||
packages=["vigil"],
|
||||
entry_points={"console_scripts":
|
||||
["vigil=vigil.__main__:entry_point",
|
||||
"vigil-worker=vigil.worker:main"]})
|
||||
6
test-all
|
|
@ -5,10 +5,10 @@
|
|||
|
||||
|
||||
FAILURE=0
|
||||
CODEBASE_PATH=$(dirname $0)
|
||||
for test in ${CODEBASE_PATH}/*_test.py; do
|
||||
CODEBASE_PATH=$(realpath $(dirname $0))
|
||||
for test in ${CODEBASE_PATH}/tests/*_test.py; do
|
||||
echo "Testing $test ..."
|
||||
${test} 2>&1
|
||||
python3 -m unittest ${test} 2>&1
|
||||
FAILURE=$(($FAILURE | $?))
|
||||
echo
|
||||
done
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@ import unittest
|
|||
|
||||
os.environ["TERM"] = "xterm-256color"
|
||||
|
||||
import fill3
|
||||
import golden
|
||||
import vigil
|
||||
import vigil.fill3 as fill3
|
||||
import vigil.golden as golden
|
||||
import vigil.__main__ as __main__
|
||||
|
||||
|
||||
_DIMENSIONS = (100, 60)
|
||||
|
|
@ -51,10 +51,10 @@ class ScreenWidgetTestCase(unittest.TestCase):
|
|||
_touch(foo_path)
|
||||
jobs_added_event = asyncio.Event()
|
||||
appearance_changed_event = asyncio.Event()
|
||||
summary = vigil.Summary(self.temp_dir, jobs_added_event)
|
||||
log = vigil.Log(appearance_changed_event)
|
||||
self.main_widget = vigil.Screen(summary, log, appearance_changed_event,
|
||||
_MockMainLoop())
|
||||
summary = __main__.Summary(self.temp_dir, jobs_added_event)
|
||||
log = __main__.Log(appearance_changed_event)
|
||||
self.main_widget = __main__.Screen(summary, log, appearance_changed_event,
|
||||
_MockMainLoop())
|
||||
|
||||
def tearDown(self):
|
||||
shutil.rmtree(self.temp_dir)
|
||||
|
|
@ -85,13 +85,13 @@ class ScreenWidgetTestCase(unittest.TestCase):
|
|||
class SummaryCursorTest(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
self.original_method = vigil.Summary.sync_with_filesystem
|
||||
vigil.Summary.sync_with_filesystem = lambda foo: None
|
||||
self.summary = vigil.Summary(None, None)
|
||||
self.original_method = __main__.Summary.sync_with_filesystem
|
||||
__main__.Summary.sync_with_filesystem = lambda foo: None
|
||||
self.summary = __main__.Summary(None, None)
|
||||
self.summary._column = [[1, 1, 1], [1, 1], [1, 1, 1]]
|
||||
|
||||
def tearDown(self):
|
||||
vigil.Summary.sync_with_filesystem = self.original_method
|
||||
__main__.Summary.sync_with_filesystem = self.original_method
|
||||
|
||||
def _assert_movements(self, movements):
|
||||
for movement, expected_position in movements:
|
||||
|
|
@ -128,7 +128,7 @@ class SummarySyncWithFilesystem(unittest.TestCase):
|
|||
_touch(self.bar_path)
|
||||
self.jobs_added_event = asyncio.Event()
|
||||
self.appearance_changed_event = asyncio.Event()
|
||||
self.summary = vigil.Summary(self.temp_dir, self.jobs_added_event)
|
||||
self.summary = __main__.Summary(self.temp_dir, self.jobs_added_event)
|
||||
self.jobs_added_event.clear()
|
||||
|
||||
def tearDown(self):
|
||||
|
|
@ -190,7 +190,7 @@ class SummarySyncWithFilesystem(unittest.TestCase):
|
|||
|
||||
# def test_log(self):
|
||||
# appearance_changed_event = asyncio.Event()
|
||||
# log = vigil.Log(appearance_changed_event)
|
||||
# log = __main__.Log(appearance_changed_event)
|
||||
# _assert_widget_appearance(log, "golden-files/log-initial", None)
|
||||
# timestamp = "11:11:11"
|
||||
# self.assertFalse(appearance_changed_event.is_set())
|
||||
|
|
@ -219,11 +219,11 @@ class MainTestCase(unittest.TestCase):
|
|||
# tmp_total = _tmp_total()
|
||||
foo_path = os.path.join(root_path, "foo")
|
||||
open(foo_path, "w").close()
|
||||
vigil.manage_cache(root_path)
|
||||
with vigil.chdir(root_path):
|
||||
__main__.manage_cache(root_path)
|
||||
with __main__.chdir(root_path):
|
||||
with contextlib.redirect_stdout(io.StringIO()):
|
||||
vigil.main(root_path, loop, worker_count=2,
|
||||
is_being_tested=True)
|
||||
__main__.main(root_path, loop, worker_count=2,
|
||||
is_being_tested=True)
|
||||
for file_name in ["summary.pickle", "creation_time", "log",
|
||||
"foo-metadata", "foo-contents"]:
|
||||
self.assertTrue(os.path.exists(".vigil/" + file_name))
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
import unittest
|
||||
|
||||
import fill3
|
||||
import vigil.fill3 as fill3
|
||||
|
||||
|
||||
class WidgetTests(unittest.TestCase):
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 108 B After Width: | Height: | Size: 108 B |
|
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 381 B |
|
Before Width: | Height: | Size: 320 B After Width: | Height: | Size: 320 B |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |