Skip to content

Commit

Permalink
fix: rename http-proxy to http_proxy
Browse files Browse the repository at this point in the history
Merge pull request #50 from ivelin/ivelin/runtime-error-peerid-is-49
  • Loading branch information
Ivelin Ivanov committed Jan 15, 2021
2 parents f58d4b6 + c4bd3c0 commit 8ee5e0b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .gitpod.yml
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/"
3 changes: 3 additions & 0 deletions .theia/settings.json
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.
4 changes: 2 additions & 2 deletions tests/test_config.py
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

0 comments on commit 8ee5e0b

Please sign in to comment.