File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,9 @@ def update(project):
31
31
assert project .name == 'multi' or not project .git .is_dirty ()
32
32
if (project .path / PYPROJECT ).exists ():
33
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 )
34
+ project .run .poetry ('update' )
35
+ if project .git .is_dirty ():
36
+ project .git .commit ('Update dependencies' , * PROJECT_FILES )
38
37
39
38
40
39
def remove_cruft (project ):
@@ -53,6 +52,10 @@ def add_strict(project):
53
52
project .git .commit ('Run mypy in strict mode' , PYPROJECT )
54
53
55
54
55
+ def run_tests (project ):
56
+ project .run ('/code/dotfiles/bin/run-tests' )
57
+
58
+
56
59
def _exists (url ):
57
60
try :
58
61
value = requests .get (url )
You can’t perform that action at this time.
0 commit comments