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
server: | |
http_listen_port: 9080 | |
grpc_listen_port: 0 | |
positions: | |
filename: /tmp/positions.yaml | |
clients: | |
- url: http://loki:3100/api/prom/push |
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
<# | |
.SYNOPSIS | |
Uploads all screenshot images generated by end to end test to the TFS/vsonline server. | |
.DESCRIPTION | |
The images are expected to be organized in the $screenshotRootDir in subfolders named as Release.Name | |
for example `C:/screenshots/Release-21`. The images should be named as the test itself for example | |
if we have test `Should_add_new_user` the image has to be named `Should_add_new_user.png`. | |
This script uses the OAuth token to access TFS therefore the option "Allow scripts to access OAuth token" | |
has to be enabled on the build that use it. |
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
get-content <file> | select-string "<pattern>" |
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
public class CoffeeScriptCachedCompiler : ICoffeeScriptCompiler | |
{ | |
private readonly ICoffeeScriptCompiler _compiler; | |
public CoffeeScriptCachedCompiler(ICoffeeScriptCompiler compiler) | |
{ | |
_compiler = compiler; | |
_hashFunction = MD5.Create(); | |
} |