Skip to content

CTX-6123: Added --verbose flag for all commands that could have detai… #1070

CTX-6123: Added --verbose flag for all commands that could have detai…

CTX-6123: Added --verbose flag for all commands that could have detai… #1070

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
- stage
- develop
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
- stage
- develop
jobs:
build:
runs-on: ubuntu-latest
environment: ${{ github.base_ref == '' && github.ref_name || github.base_ref }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Print environment
run: |
echo ${{ github.base_ref == '' && github.ref_name || github.base_ref }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv wheel
pipenv install --dev
- name: Build wheel
run: |
pipenv run python -m build
- name: Run unit tests
# Re-enable when we implement secure workflow with secrets
# env:
# CTX_USERNAME: ${{ secrets.CTX_USERNAME }}
# CTX_PASSWORD: ${{ secrets.CTX_PASSWORD }}
run: |
pipenv run python -m unittest discover tests