Skip to content

Pyrobird optimization #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 38 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6382ff1
Mesh simplification
sqrd-max Jun 12, 2025
a1a3bcc
Experiment on optimizations
DraTeots Jun 16, 2025
998a0de
Correct pyrobird screenshot
sqrd-max Jun 18, 2025
e6cb189
Add test for pyrobird serve
sqrd-max Jun 19, 2025
3a9ddd7
Merge remote-tracking branch 'eic/mesh-optimization' into pyrobird-op…
sqrd-max Jun 19, 2025
e517ec0
Implement mesh simplification on geometry editing level
DraTeots Jun 24, 2025
99bf533
Bump version to 0.2.6
DraTeots Jun 24, 2025
2142036
add integration tests
sqrd-max Jun 26, 2025
fb33892
Working on integration tests
sqrd-max Jun 26, 2025
8ab87a4
Auto stash before merge of "pyrobird-optimization" and "origin/pyrobi…
DraTeots Jun 26, 2025
bd1a3d3
Fix documentation and error dislpaying
DraTeots Jun 28, 2025
bf30d15
Switch from requests to urllib
sqrd-max Jul 5, 2025
cc285a2
ci: add integration-tests workflow
sqrd-max Jul 8, 2025
0f1daa8
Fix documentation location
DraTeots Jul 8, 2025
f8764fc
Merge remote-tracking branch 'origin/pyrobird-optimization' into pyro…
DraTeots Jul 8, 2025
a4d50a0
Reset the link
DraTeots Jul 8, 2025
e84ba7d
Add documentation back
DraTeots Jul 8, 2025
b6bec7c
Fix directories
sqrd-max Jul 8, 2025
57d837e
Fix directories 2
sqrd-max Jul 8, 2025
c692c3b
Fix paths
sqrd-max Jul 8, 2025
512a1dc
Fix paths
sqrd-max Jul 8, 2025
501e3c3
Working on integration tests
sqrd-max Jul 8, 2025
5ee02a5
Fixing integration test
sqrd-max Jul 8, 2025
796fcb0
Fixing int tests
sqrd-max Jul 8, 2025
ead7dee
Fix int tests
sqrd-max Jul 8, 2025
6abc07e
Fix int tests 3
sqrd-max Jul 8, 2025
1d8e2f7
Fix int test 4
sqrd-max Jul 8, 2025
eee1285
Use npm run build in ng_build_copy
DraTeots Jul 9, 2025
198f608
Working on int tests
sqrd-max Jul 9, 2025
54649e0
int tests
sqrd-max Jul 9, 2025
d5a9ce1
int tests 2
sqrd-max Jul 9, 2025
81d0b43
int test
sqrd-max Jul 9, 2025
e01429e
int test
sqrd-max Jul 9, 2025
a62ddc0
int test
sqrd-max Jul 9, 2025
be92d01
int test
sqrd-max Jul 9, 2025
217a358
Fix integration tests CI
DraTeots Jul 9, 2025
0a66c4b
Rework how backend config are made
DraTeots Jul 10, 2025
30073fc
Re enable the tests
DraTeots Jul 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Integration Tests Workflow

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
integration-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'


- name: Debug info before build
run: |
cd firebird-ng
ls -l
cat package.json
npm --version
node --version
npm install
npm install -g @angular/cli
ng build

# - name: Install Frontend dependencies
# run: |
# cd firebird-ng
# npm install
#
# - name: Try build and show all output
# run: |
# cd firebird-ng
# npm run build
#
# - name: Clean backend static and copy frontend build
# run: |
# rm -rf pyrobird/server/static/*
# ls -la pyrobird/server/static
# cp -r firebird-ng/dist/firebird/browser/* pyrobird/server/static/

- name: Install Python dependencies and Build Frontend
run: |
cd pyrobird
python -m pip install -e .[dev,batch]
python ng_build_copy.py

- name: Run integration tests
run: |
python pyrobird/tests/integration_tests/run_integration_tests.py
6 changes: 4 additions & 2 deletions .github/workflows/pyrobird.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
# Add any other dependencies your project requires
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

- name: Run tests
- name: Run unit tests
run: |
pytest ./pyrobird/tests
pytest ./pyrobird/tests/unit_tests


File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading