Skip to content

Commit

Permalink
Modified tests and added visual studio .sln and .njsproj files for ea…
Browse files Browse the repository at this point in the history
…sy 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.
  • Loading branch information
amarzavery authored Dec 15, 2016
1 parent 059a72f commit 0105f7c
Show file tree
Hide file tree
Showing 6 changed files with 567 additions and 17 deletions.
27 changes: 26 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,29 @@ node_modules
.idea

# ignore code gen virtual env folder
SdkCodeGen
SdkCodeGen

# Visual Studio #
.settings/
.vs/
.vscode/
/app.js
*.suo
*.user
.ntvs_analysis.*
.njsproj
*.etl
*.etl.tmp
*.vspx
*.njsperf
*.sdf
*.opensdf
bin/*.dll

# Visual Studio Code
.settings/

# Builds #
out/*
tmp/*
obj/
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "0.12"
- "4"
services:
- docker
env:
Expand All @@ -14,6 +14,8 @@ env:
before_install:
- docker pull lmazuel/swagger-to-sdk
- python -c "import os; print('\n'.join(v for v in os.environ.keys() if v.startswith('TRAVIS')))" > /tmp/env_file
install:
- npm install
script:
- DOCKER_CMD="docker run --rm --env-file /tmp/env_file -e GH_TOKEN -v $PWD:/git-restapi/ lmazuel/swagger-to-sdk"
- if [[ $MODE == 'python' ]]; then $DOCKER_CMD AutorestCI/azure-sdk-for-python --pr-repo-id Azure/azure-sdk-for-python -o dev -v; fi
Expand Down
Loading

0 comments on commit 0105f7c

Please sign in to comment.