Skip to content

add username password auth (#94) #273

add username password auth (#94)

add username password auth (#94) #273

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [develop]
tags:
- "*"
pull_request:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
working-directory: ./python
run: |
python -m pip install --upgrade pip
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
working-directory: ./python
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 ./timeplus --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 ./timeplus --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Set Version
id: version
run: |
echo "::set-output name=git_tag::$(git fetch --prune --unshallow && git describe --tags --abbrev=0 | sed -e "s/v//g")"
- name: Build and Install
working-directory: ./python
run: |
make install VERSION=${{ steps.version.outputs.git_tag }}
- name: Test with pytest
working-directory: ./python
env:
TIMEPLUS_API_KEY: ${{ secrets.TIMEPLUS_API_KEY }}
TIMEPLUS_HOST: ${{ secrets.TIMEPLUS_HOST }}
TIMEPLUS_WORKSPACE: ${{ secrets.TIMEPLUS_WORKSPACE }}
EXTERNAL_STREAM_PASSWORD: ${{ secrets.EXTERNAL_STREAM_PASSWORD }}
TIMEPLUS_REPLICATION_NUMBER: 3
run: |
make test
- name: Upload package
uses: actions/upload-artifact@v3
with:
name: gluon python package
path: ./python/dist