Repaired build & publish #93

This commit is contained in:
2022-11-30 19:05:11 +01:00
parent 1bbec27d1a
commit 186b336bf3
27 changed files with 29 additions and 29 deletions

View File

@@ -78,7 +78,7 @@ class BuildTestCase(unittest.TestCase):
def test_build(self):
CLICommands.build()
dist_path = './dist'
full_dist_path = f'{dist_path}/{self._source}/build/'
full_dist_path = f'{dist_path}/{self._source}/build/{String.convert_to_snake_case(self._source)}'
self.assertTrue(os.path.exists(dist_path))
self.assertTrue(os.path.exists(full_dist_path))
self.assertFalse(self._are_dir_trees_equal(f'./src/{String.convert_to_snake_case(self._source)}', full_dist_path))