-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rename http-proxy to http_proxy
Merge pull request #50 from ivelin/ivelin/runtime-error-peerid-is-49
- Loading branch information
Showing
4 changed files
with
13 additions
and
4 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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
tasks: | ||
- init: 'echo "TODO: Replace with init/build command"' | ||
command: 'echo "TODO: Replace with command to start project"' | ||
- init: | | ||
echo "Gitpod init. Setting up peerjs-python dev environment." | ||
pip3 install -e ./src | ||
command: | | ||
pyenv global system | ||
echo "Started peerjs-python development environment." | ||
echo "To run the peerjs-python testsuite use:" | ||
echo "python3 -m pytest --cov=peerjs --cov-report=term tests/" |
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,3 @@ | ||
{ | ||
"python.pythonPath": "/home/gitpod/.pyenv/versions/3.8.7/bin/python" | ||
} |
File renamed without changes.
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,8 +1,8 @@ | ||
"""Test configuration functions.""" | ||
|
||
# Placeholder for now | ||
|
||
from peerjs.ext import http_proxy | ||
|
||
def test_noop(): | ||
"""Test nothing. Just a placeholder for now.""" | ||
assert True | ||
|