Commit d1881b9

mo khan <mo.khan@gmail.com>
2021-02-04 18:23:37
chore: skip setup in lint/test script
1 parent 546f8d8
Changed files (2)
bin/lint
@@ -4,8 +4,5 @@ set -e
 
 [ -z "$DEBUG" ] || set -x
 
-echo [$(date "+%H:%M:%S")] "==> Running setup…"
-bin/setup
-
 echo [$(date "+%H:%M:%S")] "==> Running linters…"
 bundle exec rake lint
bin/test
@@ -1,17 +1,10 @@
 #!/bin/sh
 
-# script/test: Run test suite for application. Optionally pass in a path to an
-#              individual test file to run a single test.
-
-
 set -e
 
 cd "$(dirname "$0")/.."
 
 [ -z "$DEBUG" ] || set -x
 
-echo [$(date "+%H:%M:%S")] "==> Running setup…"
-bin/setup
-
 echo [$(date "+%H:%M:%S")] "==> Running tests…"
 bundle exec rake spec