diff --git a/.travis.yml b/.travis.yml index d5bc15a5..fc30770f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,9 @@ php: before_install: - travis_retry composer self-update - + - travis_retry composer install --no-interaction --prefer-dist script: -# - phpunit --verbose tests/MockTest + - phpunit --verbose tests/MockTest matrix: allow_failures: diff --git a/phpunit.xml b/phpunit.xml index bd979be3..1bd82939 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,6 +1,6 @@ - + tests/ diff --git a/tests/IssueTest.php b/tests/IssueTest.php index a351c732..a4b7bbd4 100644 --- a/tests/IssueTest.php +++ b/tests/IssueTest.php @@ -19,9 +19,6 @@ public function testIssue() print_r($issue->fields->versions[0]); - //foreach ($issue->fields->comment->comments as $c) { - // echo ("comment : " . $c->body . "\n"); - //} } catch (HTTPException $e) { $this->assertTrue(false, $e->getMessage()); } @@ -154,7 +151,6 @@ public function testTransition($issueKey) $this->assertTrue(false, 'testTransition Failed : '.$e->getMessage()); } } - // public function testSearch() { @@ -168,5 +164,4 @@ public function testSearch() $this->assertTrue(false, 'testSearch Failed : '.$e->getMessage()); } } - }