File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ jobs :
3
+ build :
4
+ docker :
5
+ - image : circleci/php:7.1.8-browsers
6
+ working_directory : ~/laravel-mutate
7
+ steps :
8
+ - checkout
9
+ - run : sudo apt install -y libsqlite3-dev
10
+ - run : composer self-update
11
+ - restore_cache :
12
+ keys :
13
+ - composer-v1-{{ checksum "composer.json" }}
14
+ - composer-v1-
15
+ - run : composer install -n --prefer-dist
16
+ - save_cache :
17
+ key : composer-v1-{{ checksum "composer.json" }}
18
+ paths :
19
+ - vendor
20
+ - run : ./vendor/bin/phpunit --testsuite Unit
21
+ - run : ./vendor/bin/phpunit --testsuite Integration
Original file line number Diff line number Diff line change 9
9
processIsolation =" false"
10
10
stopOnFailure =" false" >
11
11
<testsuites >
12
- <testsuite name =" Unit Tests " >
12
+ <testsuite name =" Unit" >
13
13
<directory suffix =" .php" >./tests/Unit</directory >
14
14
</testsuite >
15
- <testsuite name =" Integration Tests " >
15
+ <testsuite name =" Integration" >
16
16
<directory suffix =" .php" >./tests/Integration</directory >
17
17
</testsuite >
18
18
</testsuites >
You can’t perform that action at this time.
0 commit comments