Skip to content

Commit

Permalink
test codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
tp7309 committed Jun 5, 2021
1 parent 876b5b4 commit d774f9f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ install:
# command to run tests
script: pytest --cov=ttpassgen
after_success:
bash <(curl -s https://codecov.io/bash)
- bash <(curl -s https://codecov.io/bash)
24 changes: 12 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "${file}",
"cwd": "${workspaceRoot}",
"env": {},
Expand All @@ -24,13 +24,13 @@
"request": "launch",
"stopOnEntry": true,
"osx": {
"pythonPath": "${env:SPARK_HOME}/bin/spark-submit"
"python": "${env:SPARK_HOME}/bin/spark-submit"
},
"windows": {
"pythonPath": "${env:SPARK_HOME}/bin/spark-submit.cmd"
"python": "${env:SPARK_HOME}/bin/spark-submit.cmd"
},
"linux": {
"pythonPath": "${env:SPARK_HOME}/bin/spark-submit"
"python": "${env:SPARK_HOME}/bin/spark-submit"
},
"program": "${file}",
"cwd": "${workspaceRoot}",
Expand All @@ -47,7 +47,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"module": "module.name",
"cwd": "${workspaceRoot}",
"env": {},
Expand All @@ -63,7 +63,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "${file}",
"cwd": "",
"console": "integratedTerminal",
Expand All @@ -79,7 +79,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "${file}",
"cwd": "",
"console": "externalTerminal",
Expand All @@ -95,7 +95,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/manage.py",
"cwd": "${workspaceRoot}",
"args": [
Expand All @@ -116,7 +116,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "fully qualified path fo 'flask' executable. Generally located along with python interpreter",
"cwd": "${workspaceRoot}",
"env": {
Expand All @@ -139,7 +139,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/run.py",
"cwd": "${workspaceRoot}",
"args": [],
Expand All @@ -156,7 +156,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"cwd": "${workspaceRoot}",
"env": {},
"envFile": "${workspaceRoot}/.env",
Expand All @@ -175,7 +175,7 @@
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.interpreterPath}",
"python": "${command:python.interpreterPath}",
"program": "${workspaceRoot}/console.py",
"cwd": "${workspaceRoot}",
"args": [
Expand Down

0 comments on commit d774f9f

Please sign in to comment.