diff --git a/phpcs.xml b/phpcs.xml
index 6bdf57ff..1d7a256b 100644
--- a/phpcs.xml
+++ b/phpcs.xml
@@ -7,7 +7,6 @@
- themes/repair-cafe/assets
plugins/liip/*/updates
diff --git a/scripts/phpcs-docker.sh b/scripts/phpcs-docker.sh
deleted file mode 100755
index c96bd529..00000000
--- a/scripts/phpcs-docker.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-set -e
-
-HERE=`dirname $0`
-DOCKER_ROOT="$HERE/../.."
-
-set +e
-
-cd $DOCKER_ROOT
-docker-compose exec workspace /var/www/vendor/bin/phpcs --standard=/var/www/phpcs.xml /var/www/plugins/liip /var/www/themes/repair-cafe
-
-exit $?
diff --git a/scripts/phpcs.sh b/scripts/phpcs.sh
index 78e11b35..e38239f3 100755
--- a/scripts/phpcs.sh
+++ b/scripts/phpcs.sh
@@ -7,6 +7,6 @@ ROOT="$HERE/.."
set +e
-$ROOT/vendor/bin/phpcs --standard=$ROOT/phpcs.xml $ROOT/plugins/liip $ROOT/themes/repair-cafe
+$ROOT/vendor/bin/phpcs --standard=$ROOT/phpcs.xml $ROOT/plugins/liip
exit $?
diff --git a/scripts/phpunit-docker.sh b/scripts/phpunit-docker.sh
deleted file mode 100755
index 7d903933..00000000
--- a/scripts/phpunit-docker.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-set -e
-
-HERE=`dirname $0`
-DOCKER_ROOT="$HERE/../.."
-
-set +e
-
-cd $DOCKER_ROOT
-docker-compose exec workspace /var/www/vendor/bin/phpunit -c /var/www/phpunit.xml
-
-exit $?
diff --git a/scripts/phpunit.sh b/scripts/phpunit.sh
deleted file mode 100755
index fdda06c1..00000000
--- a/scripts/phpunit.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-set -e
-
-HERE=`dirname $0`
-ROOT="$HERE/.."
-
-set +e
-
-$ROOT/vendor/bin/phpunit -c $ROOT/phpunit.xml
-
-exit $?