-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,449 additions
and
4,304 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
*.so | ||
|
||
*.egg | ||
*.egg-info/ | ||
dist/ | ||
build/ | ||
*.pyd |
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,17 @@ | ||
# Makefile to trigger tests for Python, Ruby, and Go implementations | ||
|
||
# Default target | ||
.PHONY: test | ||
test: test-python test-ruby | ||
|
||
# Python test target | ||
.PHONY: test-python | ||
test-python: | ||
@echo "Running Python tests..." | ||
PYTHONPATH=./python python -m unittest discover -s python/tests | ||
|
||
# Ruby test target | ||
.PHONY: test-ruby | ||
test-ruby: | ||
@echo "Running Ruby tests..." | ||
cd ruby && bundle exec rake test |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.