-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
#!/bin/bash | ||
|
||
source "$(dirname "${0}")"/functions-test | ||
doCommandTest az | ||
if doIsWindows | ||
then | ||
doCommandTest az | ||
else | ||
echo "The integration-test for az is currently disabled for MacOS and Linux systems" | ||
exit 0 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
#!/bin/bash | ||
|
||
source "$(dirname "${0}")"/functions-test | ||
doCommandTest pip | ||
if doIsWindows | ||
then | ||
doCommandTest pip | ||
else | ||
echo "The integration-test for pip is currently disabled for MacOS and Linux systems" | ||
exit 0 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
#!/bin/bash | ||
|
||
source "$(dirname "${0}")"/functions-test | ||
doCommandTest python | ||
if doIsWindows | ||
then | ||
doCommandTest python | ||
else | ||
echo "The integration-test for python is currently disabled for MacOS and Linux systems" | ||
exit 0 | ||
fi |