agshruti12 is testing feature metrics 🚀 #746
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: 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@v4 | |
with: | |
name: test-log | |
path: ./tests/test.log | |
if: ${{ always() }} |