Skip to content

Commit

Permalink
Add v3.4 release (#257)
Browse files Browse the repository at this point in the history
* Format

* Add buffer transport

* tune tests

* Set docker image version

* Update thrift files

* Update deploy action
  • Loading branch information
Aiee authored Feb 7, 2023
1 parent ef84e5f commit 7773f4f
Show file tree
Hide file tree
Showing 28 changed files with 2,734 additions and 1,350 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
- name: Test with pytest
run: |
docker-compose -f docker-compose.yaml up -d
sleep 45
sleep 20
pytest -s -v -k "not SSL"
working-directory: tests
- name: Test SSL connection with pytest
run: |
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
sleep 45
sleep 20
pytest -s -v -k "SSL"
working-directory: tests

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
- name: Test with pytest
run: |
docker-compose -f docker-compose.yaml up -d
sleep 45
sleep 20
pytest -s -v -k "not SSL" --cov=../nebula3 --cov-report=xml --cov-append
working-directory: tests
- name: Test SSL connection with pytest
run: |
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
sleep 45
sleep 20
pytest -s -v -k "SSL" --cov=../nebula3 --cov-report=xml --cov-append
working-directory: tests
- name: Upload Coverage to Codecov
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ MAC_BLACK = black
FMT_EXCLUDE = --extend-exclude nebula3/common/\|nebula3/storage/\|nebula3/graph/\|nebula3/meta\|nebula3/common\|nebula3/fbthrift/

fmt:
pip install --user black
pip install --user black==22.8.0
@if [ -x $(LINUX_BLACK) ];then \
$(LINUX_BLACK) -S $(FMT_EXCLUDE) .; \
else \
$(MAC_BLACK) -S $(FMT_EXCLUDE) .; \
fi

fmt-check:
pip install --user black
pip install --user black==22.8.0
@if [ -x $(LINUX_BLACK) ];then \
$(LINUX_BLACK) -S --check $(FMT_EXCLUDE) .; \
else \
Expand Down
Loading

0 comments on commit 7773f4f

Please sign in to comment.