New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed Translator and various other improvements and corrections for version 2 of the component framework #40
Changes from all commits
6ce5a87
0342e15
71dba95
e34610a
2ee9490
ed9dc51
93a6ce1
9012928
1b0a199
5fcf8f4
e8e5586
d3b4d60
c87ef04
50fbc37
679a7e4
ffb234d
ef4d35a
adf01f6
4f8c9b5
9517d64
682d6e0
512ebe5
a95f1e0
665b714
f37541b
7e1abad
bb334dc
02e5da6
a0feab1
99360bc
b0c4aa3
7ed7065
0b0ac33
f76c079
960f538
14c9fd0
982181e
2b4be31
d633386
fb80a60
e351699
2631468
8c8f3af
4e1e832
d724568
6271dcf
064280c
dd7a8a5
c26862a
050d937
304ae77
b66cbe9
c272cc0
968a72b
af1f459
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| tests/tmp | ||
| /tests/tmp | ||
| /vendor | ||
| /build | ||
| /composer.lock | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| tools: | ||
| php_code_coverage: | ||
| test_command: "phpunit -c tests/" | ||
| filter: | ||
| paths: ["src/*"] | ||
| php_sim: | ||
| enabled: true | ||
| filter: | ||
| paths: ["src/*"] | ||
| php_mess_detector: | ||
| enabled: true | ||
| filter: | ||
| paths: ["src/*"] | ||
| php_pdepend: | ||
| enabled: true | ||
| filter: | ||
| paths: ["src/*"] | ||
| php_analyzer: | ||
| enabled: true | ||
| filter: | ||
| paths: ["src/*"] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,12 +2,8 @@ language: php | |
| php: | ||
| - 5.4 | ||
| - 5.5 | ||
| - hhvm | ||
|
|
||
| matrix: | ||
| allow_failures: | ||
| - php: hhvm | ||
|
|
||
| before_script: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hhvm not working? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i just don't think we should test against something that fails and that is not fully working, we either remove it or remove the allow_failtures cc @pmjones |
||
| - cd tests | ||
| script: phpunit | ||
| notifications: | ||
| irc: "irc.freenode.org#auraphp" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a question, I tested this and it is working as expected. But is there any difference with
/in front and without.See
tests/tmpand/tests/tmp. The/makes me think like root of Linux, but now I am getting to root of git.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the / up front basically will ignore only /file so the rood project file named
fileand not nested instances which is more specific