projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
94464be
)
(travis) Only consider the runmode a 'Smoker' when we CI ourselves
Peter Rabbitson [Mon, 2 Mar 2015 06:02:24 +0000 (07:02 +0100)]
t/lib/DBICTest/RunMode.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/lib/DBICTest/RunMode.pm
b/t/lib/DBICTest/RunMode.pm
index
ab47d0c
..
f1e5544
100644
(file)
--- a/
t/lib/DBICTest/RunMode.pm
+++ b/
t/lib/DBICTest/RunMode.pm
@@
-198,7
+198,7
@@
sub is_author {
sub is_smoker {
return
- ( ($ENV{TRAVIS}||'') eq 'true' )
+ ( ($ENV{TRAVIS}||'') eq 'true' and ($ENV{TRAVIS_REPO_SLUG}||'') eq 'dbsrgits/dbix-class' )
||
( $ENV{AUTOMATED_TESTING} && ! $ENV{PERL5_CPANM_IS_RUNNING} && ! $ENV{RELEASE_TESTING} )
;