We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2819cd7 commit 34ec757Copy full SHA for 34ec757
multi/commands/poetry.py
@@ -31,10 +31,9 @@ def update(project):
31
assert project.name == 'multi' or not project.git.is_dirty()
32
if (project.path / PYPROJECT).exists():
33
project.p()
34
- if not False:
35
- project.run.poetry('update')
36
- if project.git.is_dirty():
37
- project.git.commit('Update dependencies', *PROJECT_FILES)
+ project.run.poetry('update')
+ if project.git.is_dirty():
+ project.git.commit('Update dependencies', *PROJECT_FILES)
38
39
40
def remove_cruft(project):
@@ -53,6 +52,10 @@ def add_strict(project):
53
52
project.git.commit('Run mypy in strict mode', PYPROJECT)
54
55
+def run_tests(project):
56
+ project.run('/code/dotfiles/bin/run-tests')
57
+
58
59
def _exists(url):
60
try:
61
value = requests.get(url)
0 commit comments