Browse Source

fix CI

pull/105/head
Martin Monperrus 5 years ago
parent
commit
447090e43d
  1. 8
      .travis.yml
  2. 6
      BibtexbrowserTest.php

8
.travis.yml

@ -5,14 +5,14 @@ services:
- mysql
php:
- '7.2'
- '7.3'
- '7.4'
- '7.2' # release 30 November 2017
- '7.3' # release 6 December 2018
- '7.4' # release 28 November 2019
script:
- curl -L -o reflectivedoc.php https://www.monperrus.net/martin/reflectivedoc.php.txt
- curl -L -o gakowiki-syntax.php https://www.monperrus.net/martin/gakowiki-syntax.php.txt
- phpunit bibtexbrowser-test.php
- phpunit BibtexbrowserTest.php
# now testing this version of bibtexbrowser with wp-publications
# Installing WP-CLI

6
bibtexbrowser-test.php → BibtexbrowserTest.php

@ -2,10 +2,10 @@
/** PhPUnit tests for bibtexbrowser
To run them:
$ phpunit bibtexbrowser-test.php
$ phpunit BibtexbrowserTest.php
With coverage:
$ phpunit --coverage-html ./coverage btb-test.php
$ phpunit --coverage-html ./coverage BibtexbrowserTest.php
(be sure that xdebug is enabled: /etc/php5/cli/conf.d# ln -s ../../mods-available/xdebug.ini)
*/
@ -59,7 +59,7 @@ class SimpleDisplayExt extends SimpleDisplay {
}
class BTBTest extends PHPUnit_Framework_TestCase {
class BibtexbrowserTest extends PHPUnit_Framework_TestCase {
public function setUp():void
{
Loading…
Cancel
Save