mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-07 21:43:32 +02:00
assume tests always run in jira cloud
This commit is contained in:
@@ -1,2 +1,5 @@
|
|||||||
config:
|
config:
|
||||||
stop: true
|
stop: true
|
||||||
|
password-source: pass
|
||||||
|
endpoint: https://go-jira.atlassian.net
|
||||||
|
user: admin
|
||||||
|
|||||||
@@ -77,10 +77,6 @@ version:
|
|||||||
clean:
|
clean:
|
||||||
rm -rf ./$(NAME)
|
rm -rf ./$(NAME)
|
||||||
|
|
||||||
export GNUPGHOME=$(CWD)/t/.gnupg
|
|
||||||
export PASSWORD_STORE_DIR=$(CWD)/t/.password-store
|
|
||||||
export JIRACLOUD=1
|
|
||||||
|
|
||||||
prove:
|
prove:
|
||||||
chmod -R g-rwx,o-rwx $(GNUPGHOME)
|
chmod -R g-rwx,o-rwx $(GNUPGHOME)
|
||||||
OSHT_VERBOSE=1 prove -v
|
OSHT_VERBOSE=1 prove -v
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
|||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira --user admin"
|
jira="../jira --user admin"
|
||||||
|
|
||||||
|
. env.sh
|
||||||
|
|
||||||
SKIP test -n "$JIRACLOUD" # using Jira Cloud at go-jira.atlassian.net
|
SKIP test -n "$JIRACLOUD" # using Jira Cloud at go-jira.atlassian.net
|
||||||
PLAN 15
|
PLAN 15
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira=../jira
|
jira=../jira
|
||||||
|
. env.sh
|
||||||
|
|
||||||
SKIP test -n "$JIRACLOUD" # using Jira Cloud at go-jira.atlassian.net
|
SKIP test -n "$JIRACLOUD" # using Jira Cloud at go-jira.atlassian.net
|
||||||
|
|
||||||
|
|||||||
+1
-7
@@ -2,13 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira"
|
jira="../jira"
|
||||||
export JIRA_LOG_FORMAT="%{level:-5s} %{message}"
|
. env.sh
|
||||||
|
|
||||||
export COLUMNS=149
|
|
||||||
ENDPOINT="http://localhost:8080"
|
|
||||||
if [ -n "$JIRACLOUD" ]; then
|
|
||||||
ENDPOINT="https://go-jira.atlassian.net"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PLAN 86
|
PLAN 86
|
||||||
|
|
||||||
|
|||||||
+1
-6
@@ -2,12 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira"
|
jira="../jira"
|
||||||
export JIRA_LOG_FORMAT="%{level:-5s} %{message}"
|
. env.sh
|
||||||
|
|
||||||
ENDPOINT="http://localhost:8080"
|
|
||||||
if [ -n "$JIRACLOUD" ]; then
|
|
||||||
ENDPOINT="https://go-jira.atlassian.net"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PLAN 84
|
PLAN 84
|
||||||
|
|
||||||
|
|||||||
+1
-6
@@ -2,12 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira"
|
jira="../jira"
|
||||||
export JIRA_LOG_FORMAT="%{level:-5s} %{message}"
|
. env.sh
|
||||||
|
|
||||||
ENDPOINT="http://localhost:8080"
|
|
||||||
if [ -n "$JIRACLOUD" ]; then
|
|
||||||
ENDPOINT="https://go-jira.atlassian.net"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PLAN 86
|
PLAN 86
|
||||||
|
|
||||||
|
|||||||
+1
-6
@@ -2,12 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira"
|
jira="../jira"
|
||||||
export JIRA_LOG_FORMAT="%{level:-5s} %{message}"
|
. env.sh
|
||||||
|
|
||||||
ENDPOINT="http://localhost:8080"
|
|
||||||
if [ -n "$JIRACLOUD" ]; then
|
|
||||||
ENDPOINT="https://go-jira.atlassian.net"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PLAN 84
|
PLAN 84
|
||||||
|
|
||||||
|
|||||||
+1
-6
@@ -2,12 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira"
|
jira="../jira"
|
||||||
export JIRA_LOG_FORMAT="%{level:-5s} %{message}"
|
. env.sh
|
||||||
|
|
||||||
ENDPOINT="http://localhost:8080"
|
|
||||||
if [ -n "$JIRACLOUD" ]; then
|
|
||||||
ENDPOINT="https://go-jira.atlassian.net"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PLAN 84
|
PLAN 84
|
||||||
|
|
||||||
|
|||||||
+1
-6
@@ -2,12 +2,7 @@
|
|||||||
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
eval "$(curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh)"
|
||||||
cd $(dirname $0)
|
cd $(dirname $0)
|
||||||
jira="../jira"
|
jira="../jira"
|
||||||
export JIRA_LOG_FORMAT="%{level:-5s} %{message}"
|
. env.sh
|
||||||
|
|
||||||
ENDPOINT="http://localhost:8080"
|
|
||||||
if [ -n "$JIRACLOUD" ]; then
|
|
||||||
ENDPOINT="https://go-jira.atlassian.net"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PLAN 82
|
PLAN 82
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user