Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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