Skip to content

Commit

Permalink
remove tests incompatible with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
H4ppy-04 committed Mar 14, 2023
1 parent 39619d7 commit ad20ed1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_unit_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
class TestCourier(unittest.TestCase):
"""Test courier functions"""

"""
def setUp(self) -> None:
self.path = "/home/Josh/dotfiles/"
if not os.path.exists(self.path):
Expand All @@ -33,6 +34,7 @@ def test_bashrc_exists(self):
self.temp_rc.close()
if os.path.exists(self.path):
os.system("rm -rf /home/Josh/dotfiles")
"""

def test_get_file_path(self):
"""Ensure file path is accurate"""
Expand Down Expand Up @@ -106,15 +108,15 @@ def test_proc_args(self):

print(f" 🐒 {self.test_proc_args.__doc__}")

"""
def test_main(self):
"""Ensure main can be run"""

print(f" 🔒 {self.test_main.__doc__}")
assert True
def tearDown(self) -> None:
del self.path
return super().tearDown()
"""


if __name__ == "__main__":
Expand Down

0 comments on commit ad20ed1

Please sign in to comment.