Skip to content

xehu is testing feature metrics 🚀 #530

xehu is testing feature metrics 🚀

xehu is testing feature metrics 🚀 #530

name: Testing Features
run-name: ${{ github.actor }} is testing feature metrics 🚀
on: [push]
jobs:
Testing-Features:
runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./src/team_comm_tools/
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
./setup.sh
- name: Install package in editable mode
run: pip install -e .
- name: Run featurizer
run: |
cd tests
python3 run_tests.py
python3 run_package_grouping_tests.py
- name: Run tests
run: |
cd tests
pytest test_feature_metrics.py
pytest test_package.py
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: test-log
path: ./tests/test.log
if: ${{ always() }}