Removed failing golden tests.

- Some tests weren't position independant, and were only working
  for me.
- Don't need to keep these, not all tools have integration tests.
This commit is contained in:
Andrew Hamilton 2021-11-03 14:39:40 +10:00
parent a74633e087
commit 0f59e43395
5 changed files with 0 additions and 28 deletions

View file

@ -1,13 +0,0 @@
Python Library Documentation: module hi3
NAME
hi3
FUNCTIONS
hi()
FILE
/home/ahamilton/code/eris/tests/golden-files/input/hi3.py


View file

@ -1 +0,0 @@
-rw-rw-r-- ahamilton/ahamilton 27 2016-02-09 21:50 hi.py

View file

@ -1 +0,0 @@
-rw-rw-r-- ahamilton/ahamilton 27 2016-02-09 21:50 hi.py

View file

@ -1 +0,0 @@
-rw-rw-r-- ahamilton/ahamilton 27 2016-02-09 21:50 hi.py

View file

@ -88,11 +88,6 @@ class ToolsTestCase(unittest.TestCase):
HI_OK = [("hi3.py", tools.Status.ok)]
def test_pydoc(self):
# FIX: This is failing inside AppImages.
if "APPDIR" not in os.environ:
self._test_tool(tools.pydoc, self.HI_OK)
def test_mypy(self):
self._test_tool(tools.mypy, self.HI_OK)
@ -135,13 +130,6 @@ class ToolsTestCase(unittest.TestCase):
def test_zipinfo(self):
self._test_tool(tools.zipinfo, [("hi.zip", tools.Status.ok)])
def test_tar_gz(self):
self._test_tool(tools.tar_gz, [("hi.tar.gz", tools.Status.ok),
("hi.tgz", tools.Status.ok)])
def test_tar_bz2(self):
self._test_tool(tools.tar_bz2, [("hi.tar.bz2", tools.Status.ok)])
def test_nm(self):
self._test_tool(tools.nm, [("libieee.a", tools.Status.ok),
("libpcprofile.so", tools.Status.ok)])