Skip to content

Commit

Permalink
[main]
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Oct 9, 2024
1 parent 0f27536 commit 1556a44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
$ODOOCMD setting DEVMODE=1 -R
$ODOOCMD setting WODOO_VERSION=${LAST_STABLE_VERSION}
$ODOOCMD build
$ODOOCMD kill || true
$ODOOCMD -f db reset
$ODOOCMD update crm
$ODOOCMD down
Expand Down
2 changes: 1 addition & 1 deletion wodoo/lib_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def remove_volumes(ctx, config, dry_run):
ensure_project_name(config)
if not config.devmode:
if not config.force:
abort("Please provide force option on non live systems")
abort("Please provide force option on non dev systems")
if not config.use_docker:
return
subprocess.check_call(["sync"])
Expand Down
5 changes: 4 additions & 1 deletion wodoo/tests/test_wodoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ def setup_method(self, method):
def teardown_method(self, method):

if self.path.exists():
shutil.rmtree(self.path)
try:
shutil.rmtree(self.path)
except Exception:
pass

# def test_smoke(self):
# pass
Expand Down

0 comments on commit 1556a44

Please sign in to comment.