Skip to content

Commit 4be5ff6

Browse files
committed
add PhpStorm 2017.3 environment
1 parent a77540d commit 4be5ff6

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ before_script:
1515
env:
1616
- PHPSTORM_ENV=2017.2
1717
- PHPSTORM_ENV=2017.2.4
18+
- PHPSTORM_ENV=2017.3.2
1819
- PHPSTORM_ENV=eap
1920

2021
matrix:

META-INF/plugin.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -686,9 +686,11 @@
686686
<add-to-group group-id="NewGroup" anchor="last"/>
687687
</group>
688688

689+
<!--
689690
<action id="SymfonyWebTestCaseGenerator" class="fr.adrienbrault.idea.symfony2plugin.action.bundle.WebTestCaseGeneratorAction">
690691
<add-to-group group-id="PhpUnitNewGroup" anchor="last"/>
691692
</action>
693+
-->
692694

693695
<action id="Symfony2Symbols" class="fr.adrienbrault.idea.symfony2plugin.action.SymfonySymbolSearchAction" text="Symfony Symbol..." icon="SymfonyIcons.Symfony">
694696
<add-to-group group-id="GoToTargetEx"/>

tests/fr/adrienbrault/idea/symfony2plugin/tests/templating/path/TwigPathTempTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package fr.adrienbrault.idea.symfony2plugin.tests.templating.path;
22

3-
import com.intellij.util.SystemIndependent;
43
import fr.adrienbrault.idea.symfony2plugin.templating.path.TwigPath;
54
import fr.adrienbrault.idea.symfony2plugin.tests.SymfonyTempCodeInsightFixtureTestCase;
65

@@ -24,7 +23,7 @@ public void testRelativePathResolving() {
2423
public void testAbsolutePathResolving() {
2524
createFile("app/views");
2625

27-
@SystemIndependent String basePath = getProject().getBasePath();
26+
String basePath = getProject().getBasePath();
2827
TwigPath twigPath = new TwigPath(basePath + "/app", "namespace");
2928
assertEquals("app", twigPath.getDirectory(getProject()).getName());
3029

travis.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ if [ "$PHPSTORM_ENV" == "2017.2" ]; then
55
ideaVersion="2017.2.5"
66
elif [ "$PHPSTORM_ENV" == "2017.2.4" ]; then
77
ideaVersion="2017.2.5"
8+
elif [ "$PHPSTORM_ENV" == "2017.3.2" ]; then
9+
ideaVersion="2017.3.1"
810
elif [ "$PHPSTORM_ENV" == "eap" ]; then
911
ideaVersion="163.5644.15"
1012
fi
@@ -77,6 +79,16 @@ elif [ "$PHPSTORM_ENV" == "2017.2.4" ]; then
7779
download "http://phpstorm.espend.de/files/proxy/phpstorm-2017.2.4-twig.zip"
7880
unzip -qo $travisCache/phpstorm-2017.2.4-twig.zip -d ./plugins
7981

82+
elif [ "$PHPSTORM_ENV" == "2017.3.2" ]; then
83+
84+
#php
85+
download "http://phpstorm.espend.de/files/proxy/phpstorm-2017.3.2-php.zip"
86+
unzip -qo $travisCache/phpstorm-2017.3.2-php.zip -d ./plugins
87+
88+
#twig
89+
download "http://phpstorm.espend.de/files/proxy/phpstorm-2017.3.2-twig.zip"
90+
unzip -qo $travisCache/phpstorm-2017.3.2-twig.zip -d ./plugins
91+
8092
elif [ "$PHPSTORM_ENV" == "eap" ]; then
8193

8294
#php

0 commit comments

Comments
 (0)