Skip to content

Commit

Permalink
Use -I. instead of -Ilib for ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ugexe committed Aug 22, 2017
1 parent a4a8d7a commit d152ce7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Expand Up @@ -23,9 +23,9 @@ build: off
test_script:
# Install dependency Distribution::Common
- git clone https://github.com/ugexe/zef %APPVEYOR_BUILD_FOLDER%\..\zef
- perl6 -I %APPVEYOR_BUILD_FOLDER%\..\zef\lib %APPVEYOR_BUILD_FOLDER%\..\zef\bin\zef --depsonly install .
- perl6 -I %APPVEYOR_BUILD_FOLDER%\..\zef %APPVEYOR_BUILD_FOLDER%\..\zef\bin\zef --deps-only install .

# Test CompUnit::Repository::Tar
- prove -v -e "perl6 -Ilib" t/
- prove -v -e "perl6 -I." t/

shallow_clone: true
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -30,7 +30,7 @@ before_install:

install:
- git clone https://github.com/ugexe/zef $HOME/zef
- perl6 -I $HOME/zef/lib $HOME/zef/bin/zef --depsonly install .
- perl6 -I $HOME/zef $HOME/zef/bin/zef --deps-only install .

script:
- prove -v -e 'perl6 -Ilib' t/
- prove -v -e 'perl6 -I.' t/

0 comments on commit d152ce7

Please sign in to comment.