Force pytest to use current dir as root dir when collecting tests #183
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Capture the version of python runtime | |
- name: Store the Python version | |
run: | | |
python -c "import sys; print('xpedite_python_version=-{}'.format(sys.version_info.major))" >> $GITHUB_ENV | |
# Install dependencies for vivify and python tests | |
- name: Install Dependencies | |
run: | | |
sudo apt install -y libgtest-dev libunwind-dev libdwarf-dev binutils-dev virtualenv pybind11-dev | |
# Enable perf setting for catputing H/W counters and kernel tracepoints | |
- name: Configure | |
run: | | |
sudo sh -c 'echo -1 >/proc/sys/kernel/perf_event_paranoid' | |
- name: Package | |
uses: ./.github/actions | |
id: manyLinux | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Build and install runtime dependencies | |
- name: Build | |
run: | | |
./build.sh --withCallStacks --forJava "${{ env.xpedite_python_version }}" | |
./install.sh "${{ env.xpedite_python_version }}" | |
# Run tests | |
- name: Test | |
run: | | |
./test/validateTarFiles.sh | |
./test/runTest.sh -c | |
# Upload code coverage statistics | |
- name: Upload code cov report | |
run: | | |
PATH=./install/runtime/bin:${PATH} python -m pip install codecov | |
PATH=./install/runtime/bin:${PATH} codecov |