Enhance Maozerov Probe with context loading, incremental logging, and persona support #143
Workflow file for this run
This file contains hidden or 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: Run Tests | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install pytest pandas nltk scipy textblob groq boto3 anthropic cohere mistralai openai vaderSentiment pyarrow fastparquet matplotlib | |
| python -m nltk.downloader punkt | |
| pip install -e . | |
| - name: Run tests | |
| run: | | |
| pytest --ignore=tests/audits/cryptohauntological_probe/test_probe_runner.py --ignore=tests/test_gemini_linguistic_bias.py --ignore=how_to_apply_guide/test_code_validator.py --ignore=implementations/watching_fairlearn_and_learning/tests/test_fairlearn_processor.py --ignore=implementations/watching_fairlearn_and_learning/tests/test_llm_replier.py --tb=short |