Skip to content

feat: 【日志平台】po环境外部授权增加批量授权能力 --story=120050745 #5714

feat: 【日志平台】po环境外部授权增加批量授权能力 --story=120050745

feat: 【日志平台】po环境外部授权增加批量授权能力 --story=120050745 #5714

Workflow file for this run

name: "[BKLog] CodeCov"
defaults:
run:
working-directory: bklog
on:
push:
paths:
- 'bklog/**'
pull_request:
paths:
- 'bklog/**'
schedule:
- cron: "0 10 * * *"
# https://github.com/actions/checkout/issues/1590
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
jobs:
run:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
working-directory: bklog
container:
image: python:3.6.8
steps:
- uses: actions/checkout@v2
- name: Generate Report
run: |
source scripts/test_env.sh
sed -i '/APIGW_ENABLED/d' dev.env.yml
pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install coverage
pip uninstall pycrypto -y
pip uninstall pycryptodome -y
pip install pycryptodome
coverage run manage.py test apps.tests
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1