forked from tableau/TabPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add TABPY_LOG_DETAILS config parameter * Add SettingsParameters.py * Update unit test * Merge from dev * Fix static pages path * Remove duplicated tests * Fix styling * Code review feedback * Fix markdownlint failure * Fix markdownlint failure * Code cleanup * Update doc * Update changelist * Move unit tests to tests folder * Update documentation for /info method * Add set_env scripts * Updated API documentation for /info and authentication * Enabled optional install log printing (for Travis) on startup shell script.. * Strictly require urllib3==1.21.1 * Loosen urllib3 version requirements. * Add auth tests * Split unit and integration tests run * Fix docs * Fix docs * Modify PYTHONPATH in travis.yml * Modify PYTHONPATH in travis.yml * Add base class for integration tests * Integration tests for unknown URL * Add SSL integ test * Update documentation with more details for auth (tableau#274) * Update documentation with more details for auth * Update swagger yml for basic auth * Add anauthorized error to swagger * Fix typo * Fix PYTHONPATH * Use set_env.sh in CI * reverting CI changes to set PYTHONPATH * source utils/set_env.sh * Fix grammar
1 parent
3e86561
commit 7fe5d93
Showing
59 changed files
with
1,374 additions
and
754 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,7 +123,6 @@ tabpy-server/tabpy_server/staging | |
|
||
# VS Code | ||
*.code-workspace | ||
.vscode/ | ||
|
||
# etc | ||
setup.bat | ||
|
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,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: General", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "externalTerminal", | ||
"env": {"${PYTHONPATH}": "${PYTHONPATH};${workspaceRoot}/tabpy-server;${workspaceRoot}/tabpy-tools"} | ||
} | ||
] | ||
} |
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,20 @@ | ||
{ | ||
"git.enabled": true, | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
"**/.pytest_cache": true, | ||
"**/*.egg-info": true, | ||
"**/*.pyc": true | ||
}, | ||
"python.linting.pylintEnabled": false, | ||
"python.linting.flake8Enabled": false, | ||
"python.linting.enabled": true, | ||
"python.testing.autoTestDiscoverOnSaveEnabled": true, | ||
"python.testing.pyTestArgs": [ | ||
"tests" | ||
], | ||
"python.testing.unittestEnabled": true, | ||
"python.testing.nosetestsEnabled": false, | ||
"python.testing.pyTestEnabled": true, | ||
"python.linting.pep8Enabled": true | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.4 | ||
0.4.1 |
Oops, something went wrong.