Skip to content

Commit

Permalink
Merge pull request #1 from ozontech/v050
Browse files Browse the repository at this point in the history
[Release] v0.5.0
  • Loading branch information
koodeex authored Mar 31, 2022
2 parents 44f9364 + b136da7 commit ccf33ea
Show file tree
Hide file tree
Showing 152 changed files with 15,862 additions and 3,799 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ jobs:
- uses: actions/checkout@v2
- name: allure-golangci-lint
run: cd ./pkg/allure && make lint
- name: framework-golangci-lint
run: cd ./pkg/framework && make lint
- name: provider-golangci-lint
run: cd ./pkg/provider && make lint
run: cd ./pkg/framework && make lint
- name: examples-golangci-lint
run: make lint

Expand All @@ -30,6 +28,17 @@ jobs:
- name: allure-test
run: cd ./pkg/allure && make test
- name: provider-test
run: cd ./pkg/provider && make test
- name: framework-test
run: cd ./pkg/framework && make test

examples:
name: examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run examples
run: make examples
- name: Archive code coverage results
uses: actions/upload-artifact@v2
with:
name: allure-results
path: ./examples/allure-results
Binary file modified .resources/example_xskip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
APP?=allure-testify
RELEASE?=0.4.2
RELEASE?=0.5.0
GOOS?=darwin

COMMIT?=$(shell git rev-parse --short HEAD)
Expand Down Expand Up @@ -53,7 +53,7 @@ install:

.PHONY: examples
examples:
- export ALLURE_OUTPUT_PATH=../ && go test ./examples/... --tags=examples,provider,allure_go
- export ALLURE_OUTPUT_PATH=../ && go test ./examples/... --tags=examples_new,provider_new,allure_go_new,async

.PHONY: allure-serve
allure-serve:
Expand All @@ -62,7 +62,7 @@ allure-serve:
# run full lint like in pipeline
.PHONY: lint
lint: install-lint
$(GOLANGCI_BIN) run --config=.golangci.yaml ./... --build-tags=examples,allure_go,provider
$(GOLANGCI_BIN) run --config=.golangci.yaml ./... --build-tags=examples_new,provider_new,allure_go_new,async


.PHONY: install-lint
Expand Down
Loading

0 comments on commit ccf33ea

Please sign in to comment.