Skip to content

Commit

Permalink
Fix test.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
technicalguru committed Mar 12, 2021
1 parent 3ba1e7b commit fb0d235
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ composer.phar
# composer.lock
/composer.lock
/set-local-test-env.sh
/nbproject/private/
7 changes: 7 additions & 0 deletions nbproject/project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include.path=${php.global.include.path}
php.version=PHP_73
source.encoding=UTF-8
src.dir=.
tags.asp=false
tags.short=false
web.root=.
9 changes: 9 additions & 0 deletions nbproject/project.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.php.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/php-project/1">
<name>php-email</name>
</data>
</configuration>
</project>
5 changes: 3 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Test script

composer update
RC=./vendor/phpunit/phpunit/phpunit tests
rm -rf vendor composer.lock
./vendor/phpunit/phpunit/phpunit tests
RC=$?
exit $RC

0 comments on commit fb0d235

Please sign in to comment.