Skip to content

Commit 7773f4f

Browse files
authored
Add v3.4 release (#257)
* Format * Add buffer transport * tune tests * Set docker image version * Update thrift files * Update deploy action
1 parent ef84e5f commit 7773f4f

28 files changed

+2734
-1350
lines changed

.github/workflows/deploy_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
- name: Test with pytest
2222
run: |
2323
docker-compose -f docker-compose.yaml up -d
24-
sleep 45
24+
sleep 20
2525
pytest -s -v -k "not SSL"
2626
working-directory: tests
2727
- name: Test SSL connection with pytest
2828
run: |
2929
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
30-
sleep 45
30+
sleep 20
3131
pytest -s -v -k "SSL"
3232
working-directory: tests
3333

.github/workflows/run_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
- name: Test with pytest
3333
run: |
3434
docker-compose -f docker-compose.yaml up -d
35-
sleep 45
35+
sleep 20
3636
pytest -s -v -k "not SSL" --cov=../nebula3 --cov-report=xml --cov-append
3737
working-directory: tests
3838
- name: Test SSL connection with pytest
3939
run: |
4040
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
41-
sleep 45
41+
sleep 20
4242
pytest -s -v -k "SSL" --cov=../nebula3 --cov-report=xml --cov-append
4343
working-directory: tests
4444
- name: Upload Coverage to Codecov

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ MAC_BLACK = black
99
FMT_EXCLUDE = --extend-exclude nebula3/common/\|nebula3/storage/\|nebula3/graph/\|nebula3/meta\|nebula3/common\|nebula3/fbthrift/
1010

1111
fmt:
12-
pip install --user black
12+
pip install --user black==22.8.0
1313
@if [ -x $(LINUX_BLACK) ];then \
1414
$(LINUX_BLACK) -S $(FMT_EXCLUDE) .; \
1515
else \
1616
$(MAC_BLACK) -S $(FMT_EXCLUDE) .; \
1717
fi
1818

1919
fmt-check:
20-
pip install --user black
20+
pip install --user black==22.8.0
2121
@if [ -x $(LINUX_BLACK) ];then \
2222
$(LINUX_BLACK) -S --check $(FMT_EXCLUDE) .; \
2323
else \

0 commit comments

Comments
 (0)