Skip to content

Commit 990d3c7

Browse files
committed
merge develop
2 parents 36b84f9 + f03bd53 commit 990d3c7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+5068
-4034
lines changed

.circleci/config.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
docker:
99
# specify the version you desire here
10-
- image: coderbot/python-gpac:3.5
10+
- image: coderbot/python-gpac:3.5-tf2
1111

1212
working_directory: ~/repo
1313

@@ -26,6 +26,7 @@ jobs:
2626
command: |
2727
python3 -m venv venv
2828
. venv/bin/activate
29+
pip install --upgrade pip
2930
pip install -r requirements_stub.txt
3031
3132
- save_cache:
@@ -38,11 +39,11 @@ jobs:
3839
name: run tests
3940
command: |
4041
. venv/bin/activate
41-
export PYTHONPATH=./stub
42+
export PYTHONPATH=./stub:test
4243
mkdir test-reports
4344
python3 -m unittest test/coderbot_test.py 2>&1 | tee test-reports/test_report.txt
44-
#python3 -m unittest test/cnn_test.py 2>&1 | tee test-reports/test_report.txt
4545
python3 -m unittest test/camera_test.py 2>&1 | tee test-reports/test_report.txt
46+
#python3 -m unittest test/cnn_test.py 2>&1 | tee test-reports/test_report.txt
4647
echo "test complete"
4748
- store_artifacts:
4849
path: test-reports/

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ photos/*.jpg
3737
photos/*.mp4
3838
photos/*.h264
3939
photos/*.json
40+
saved_photos
4041

4142
#cnn models
4243
cnn_models/*
@@ -64,6 +65,7 @@ static/blockly-tutorial
6465
.Trashes
6566
ehthumbs.db
6667
Thumbs.db
68+
.vscode
6769

6870
# Swap files
6971
*.swp

MPU6050.py

-264
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pip3 install -r requirements_stub.txt
3030
pip3 install -r requirements.txt
3131

3232
# Start the backend in stub mode
33-
PYTHONPATH=stub python3 init.py
33+
PYTHONPATH=stub:test python3 init.py
3434

3535
# or, run the real thing if you're on a physical RPi
3636
python3 init.py

_programs.json

-1
This file was deleted.

0 commit comments

Comments
 (0)