From: gggeek Date: Sat, 18 May 2019 09:30:00 +0000 (+0000) Subject: travis X-Git-Tag: 4.3.2~10 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=6be6c0c11d963a84b8180f0bba596c71470ecde9 travis --- diff --git a/.travis.yml b/.travis.yml index af2f5cc..a3641a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php -# the current Travis VMs are based on Ubuntu Trusty. Alas, those do not have php 5.3 available. So we keep using Precise... -dist: precise +dist: xenial php: - 5.3 @@ -11,8 +10,7 @@ php: - 7.0 - 7.1 - 7.2 - # hhvm is not available any more on Precise images - #- hhvm + - 7.3 before_install: # This is mandatory or the 'apt-get install' calls following will fail diff --git a/tests/4LocalhostMultiTest.php b/tests/4LocalhostMultiTest.php index 32fef36..0516c30 100644 --- a/tests/4LocalhostMultiTest.php +++ b/tests/4LocalhostMultiTest.php @@ -377,23 +377,4 @@ class LocalhostMultiTest extends LocalhostTest $this->$method(); } - - function testBasicAuth() - { - $this->client->setCredentials('test', 'test'); - $this->client->path = $this->args['URI'].'?FORCE_AUTH=Basic'; - $this->_runtests(); - } - - function testDigestAuth() - { - if(!function_exists('curl_init')) - { - $this->markTestSkipped('CURL missing: cannot test digest auth functionality'); - return; - } - $this->client->setCredentials('test', 'test', CURLAUTH_DIGEST); - $this->client->path = $this->args['URI'].'?FORCE_AUTH=Digest'; - $this->_runtests(); - } }