Skip to content
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

Minor issues shown by SonarQube has been fixed #61

Open
wants to merge 59 commits into
base: development
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
412e26d
Slack notification added to the yml file.
odmehb Apr 9, 2017
5756e31
SonarQube added
odmehb Apr 10, 2017
1630a72
dev branch added to sonarQube
odmehb Apr 10, 2017
7427320
Update .travis.yml
odmehb Apr 18, 2017
3da628d
test commit
makadimilan Apr 19, 2017
e24809b
sonarcube remove
makadimilan Apr 19, 2017
d08c239
verbose enabled
makadimilan Apr 19, 2017
fc0dc40
revert
makadimilan Apr 19, 2017
9d76728
sonarcube integration
makadimilan Apr 20, 2017
f2b64a3
sonarQube branches setup
makadimilan Apr 20, 2017
991271c
sonarqube revert
makadimilan Apr 20, 2017
2287b0e
sonarqube setup
makadimilan Apr 20, 2017
763ca1f
sad but successful build
makadimilan Apr 20, 2017
811a414
slack reintegration
makadimilan Apr 20, 2017
595864d
testify test
makadimilan May 4, 2017
d3774ec
Uniject-master
makadimilan May 4, 2017
04ea1dd
unit test fail
makadimilan May 4, 2017
5e1f6e4
build.sh in travis.yml
makadimilan May 4, 2017
2b64068
Merge branch 'milan_dev' of https://github.com/odmehb/UnitySteer into…
makadimilan May 5, 2017
efe7b17
new file hierarchy + unity project
makadimilan May 5, 2017
8376396
fix
makadimilan May 5, 2017
77a7eec
travis
makadimilan May 5, 2017
bad80de
deprecated .sh removed from the travis.yml file
makadimilan May 5, 2017
a7a081c
test unit tests
makadimilan May 5, 2017
7327f51
failed unittest test
makadimilan May 5, 2017
c20a7b5
example integration an unit tests
makadimilan May 5, 2017
c2d7827
run unit tests on travis
makadimilan May 5, 2017
c601965
auto start unit tests
makadimilan May 5, 2017
327cbad
fix
makadimilan May 5, 2017
54d224f
after script
makadimilan May 5, 2017
c932808
gitmodules test
makadimilan May 8, 2017
cca96ae
revert
makadimilan May 10, 2017
13c5c2c
fix
makadimilan May 10, 2017
1629f48
unity test tools reimport
makadimilan May 10, 2017
4a5a34b
missing files
makadimilan May 10, 2017
b446d9a
unit test
makadimilan May 10, 2017
1e3edd8
debug ls
makadimilan May 10, 2017
a76786a
unity path test
makadimilan May 10, 2017
3eb2738
ls commands
makadimilan May 10, 2017
1bb7f78
ls ./.deploy
makadimilan May 10, 2017
2c4dde0
more ls
makadimilan May 11, 2017
89cee02
find / -name Unity
makadimilan May 11, 2017
6845fe8
force install
makadimilan May 11, 2017
5988f10
install test
makadimilan May 11, 2017
5a73ba7
running unit tests
makadimilan May 11, 2017
73f18eb
fix
makadimilan May 11, 2017
13f3e6b
unity path fix and exit code
makadimilan May 11, 2017
07662fb
batchmode and nogui
makadimilan May 11, 2017
344235b
fallback
makadimilan May 11, 2017
cc06823
running without -nographics
makadimilan May 11, 2017
05ad4f2
unit tests
makadimilan May 12, 2017
118d82b
examples
makadimilan May 12, 2017
aa0eec5
Integration test
makadimilan May 12, 2017
718adbe
IntegrationTestScene update
makadimilan May 12, 2017
5801d95
SonarQube bux fixes
odmehb May 14, 2017
89ac783
SonarQube bux fixes
odmehb May 14, 2017
dcd54a7
Merge branch 'development' of https://github.com/odmehb/UnitySteer in…
odmehb May 14, 2017
d5c830e
original file structure
makadimilan May 14, 2017
42f1994
minor issues fixed
odmehb May 16, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
running without -nographics
  • Loading branch information
makadimilan committed May 11, 2017
commit cc06823f63d73d07315a1430f8b51d2f2fe8df93
26 changes: 1 addition & 25 deletions .deploy/travis/run_unit_tests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/sh

echo "------------------------------------------------------------------------------------------------------------------------"
echo "Starting Unit Tests; ---------------------------------------------------------------------------------------------"
echo "Starting Unit Tests; ---------------------------------------------------------------------------------------------------"
echo "------------------------------------------------------------------------------------------------------------------------"

directory=/Applications/Unity/Unity.app/Contents/MacOS/Unity
@@ -14,36 +14,12 @@ fi
echo "\nRunning unit tests.\n"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-batchmode \
-nographics \
-runEditorTests \
-projectPath ./ \
-editorTestsResultFile ./testresults.xml

exitcode=$?;

# fallback
if [[ $exitcode != 0 ]];
then
echo "\nRunning unit tests without batchmode.\n"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-nographics \
-runEditorTests \
-projectPath ./ \
-editorTestsResultFile ./testresults.xml
exitcode=$?;
fi

# fallback
if [[ $exitcode != 0 ]];
then
echo "\nRunning unit tests without nographics.\n"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-runEditorTests \
-projectPath ./ \
-editorTestsResultFile ./testresults.xml
exitcode=$?;
fi

echo "DEBUG - exitcode is $exitcode"
echo "DEBUG - ls -al ./"
ls -al ./