Skip to content

Commit 0105f7c

Browse files
authored
Modified tests and added visual studio .sln and .njsproj files for easy test debugging (Azure#806)
* Adding example request/responses to redis cache swagger (2016-04-01 api-version) * Modified tests and added visual studio .sln and .njsproj files to make it easy to debug tests.
1 parent 059a72f commit 0105f7c

File tree

6 files changed

+567
-17
lines changed

6 files changed

+567
-17
lines changed

.gitignore

+26-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,29 @@ node_modules
6565
.idea
6666

6767
# ignore code gen virtual env folder
68-
SdkCodeGen
68+
SdkCodeGen
69+
70+
# Visual Studio #
71+
.settings/
72+
.vs/
73+
.vscode/
74+
/app.js
75+
*.suo
76+
*.user
77+
.ntvs_analysis.*
78+
.njsproj
79+
*.etl
80+
*.etl.tmp
81+
*.vspx
82+
*.njsperf
83+
*.sdf
84+
*.opensdf
85+
bin/*.dll
86+
87+
# Visual Studio Code
88+
.settings/
89+
90+
# Builds #
91+
out/*
92+
tmp/*
93+
obj/

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- "0.12"
3+
- "4"
44
services:
55
- docker
66
env:
@@ -14,6 +14,8 @@ env:
1414
before_install:
1515
- docker pull lmazuel/swagger-to-sdk
1616
- python -c "import os; print('\n'.join(v for v in os.environ.keys() if v.startswith('TRAVIS')))" > /tmp/env_file
17+
install:
18+
- npm install
1719
script:
1820
- DOCKER_CMD="docker run --rm --env-file /tmp/env_file -e GH_TOKEN -v $PWD:/git-restapi/ lmazuel/swagger-to-sdk"
1921
- if [[ $MODE == 'python' ]]; then $DOCKER_CMD AutorestCI/azure-sdk-for-python --pr-repo-id Azure/azure-sdk-for-python -o dev -v; fi

0 commit comments

Comments
 (0)