Skip to content

Commit 03aec1a

Browse files
Copilotkwerle
andauthored
Remove -it flag from test target in Makefile (#113)
* Initial plan * Remove -it flag from test target in Makefile Co-authored-by: kwerle <23320+kwerle@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kwerle <23320+kwerle@users.noreply.github.com>
1 parent 4f22948 commit 03aec1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ console: image
2323
docker run -it --rm $(LOCAL_LINK) $(PROJECT_NAME) bin/console
2424

2525
test: image
26-
docker run -it --rm $(LOCAL_LINK) $(PROJECT_NAME) sh -c 'bundle exec rake test && bundle exec rubocop'
26+
docker run --rm $(LOCAL_LINK) $(PROJECT_NAME) sh -c 'bundle exec rake test && bundle exec rubocop'
2727

2828
shell: image
2929
docker run -it --rm $(LOCAL_LINK) $(PROJECT_NAME) sh

0 commit comments

Comments
 (0)