travis - stop supressing output

This commit is contained in:
Nabeel Shahzad
2017-07-13 15:23:55 -05:00
parent 4dd2e8c9c6
commit de91b133e7
6 changed files with 57 additions and 17 deletions

View File

@@ -56,7 +56,6 @@ class PIREPTest extends TestCase
}
/**
* @outputBuffering disabled
*/
public function testAddPirep()
{
@@ -91,8 +90,6 @@ class PIREPTest extends TestCase
/**
* check the stats/ranks, etc have incremented properly
* @covers \App\Services\PilotService
* @covers \App\Services\PIREPService
*/
public function testPilotStatsIncr()
{

View File

@@ -20,7 +20,7 @@ abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
}
protected function reset_db() {
// exec('make -f '.__DIR__.'/../Makefile unittest-db');
exec('make -f '.__DIR__.'/../Makefile unittest-db');
}
public function setUp() {
@@ -28,9 +28,6 @@ abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
$this->reset_db();
Mail::fake();
#Artisan::call('migrate');
#Artisan::call('db:seed');
}
/**