Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,15 @@ Some first steps for you!
or

- [Try a demo](https://github.com/driftphp/demo)
- [Install the skeleton](https://github.com/driftphp/skeleton)
- [Install the skeleton](https://github.com/driftphp/skeleton)

## Running Tests locally ##

In order to run the tests locally you must use one of the following snippet
```
composer update -n --prefer-dist
rm -Rf var/*
php vendor/bin/phpunit --testsuite=base --exclude-group=with-filesystem
```
__Please note:__ `phpunit` caches the compiled container when it runs. Therefore, make sure to clear the cache from `./var/test`, on any modification that causes the container to change.