Skip to content
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

Add v3.4 release #257

Merged
merged 6 commits into from
Feb 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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