-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
286 additions
and
132 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package isupipe | ||
|
||
import ( | ||
"context" | ||
"log" | ||
"testing" | ||
"time" | ||
|
||
"github.com/isucon/isucandar/agent" | ||
"github.com/isucon/isucon13/bench/internal/config" | ||
) | ||
|
||
func TestMain(m *testing.M) { | ||
client, err := NewClient( | ||
agent.WithBaseURL(config.TargetBaseURL), | ||
agent.WithTimeout(1*time.Minute), | ||
) | ||
if err != nil { | ||
log.Fatalln(err) | ||
} | ||
|
||
if _, err := client.Initialize(context.Background()); err != nil { | ||
log.Fatalln(err) | ||
} | ||
|
||
m.Run() | ||
} |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# 移植マニュアル | ||
|
||
|
||
## Webappについて | ||
|
||
|
||
|
||
|
||
## self-hosted runnerについて | ||
|
||
|
||
|
||
|
||
## 関連するミドルウェアについて | ||
|
||
|
||
|
||
|
||
## CI実行方法について | ||
|
||
|
||
|
||
|
||
## ベンチマーカーで発生するエラーについて | ||
|
||
エラーには以下のような種類があります | ||
|
||
うち、移植失敗の可能性を示唆するものは以下のとおりです |
Oops, something went wrong.