Skip to content

Commit

Permalink
Fix install, fix removal of fixture_src
Browse files Browse the repository at this point in the history
  • Loading branch information
cspray committed Jun 16, 2024
1 parent d461256 commit 4822340
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ phpunit.xml export-ignore
psalm.xml export-ignore
CODE_OF_CONDUCT.md export-ignore
CONTRIBUTING.md export-ignore
fixture_src export-ignore
test export-ignore
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
..
.phpunit.cache
architectural-decisions.xml.bak
/composer.lock
/**/composer.lock
build/
vendor/
11 changes: 4 additions & 7 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,19 @@ _default:
just --list --unsorted

# Install all dependencies necesesary to run Annotated Container tools
install: _install_ac _install_labrador_cs _install_phpunit _install_psalm
install: _install_labrador_cs _install_phpunit _install_psalm _install_ac

_install_ac:
composer install

_install_labrador_cs:
cd tools/labrador-cs
composer install
cd tools/labrador-cs && composer install

_install_phpunit:
cd tools/phpunit
composer install
cd tools/phpunit && composer install

_install_psalm:
cd tools/psalm
composer install
cd tools/psalm && composer install

# Run unit tests
test *FLAGS:
Expand Down

0 comments on commit 4822340

Please sign in to comment.