|
|
|
|
|
|
pip freeze > pip_versions-${{ matrix.python-version }}.txt |
|
|
|
cat pip_versions-${{ matrix.python-version }}.txt |
|
|
|
- name: Run pytest |
|
|
|
run: pytest --cov=ml-agents --cov=ml-agents-envs --cov=gym-unity --cov-report html --junitxml=junit/test-results-${{ matrix.python-version }}.xml -p no:warnings |
|
|
|
run: pytest --cov=ml-agents --cov=ml-agents-envs --cov=gym-unity --cov-report html --junitxml=junit/test-results-${{ matrix.python-version }}.xml -p no:warnings -v |
|
|
|
- name: Upload pytest test results |
|
|
|
uses: actions/upload-artifact@v2 |
|
|
|
with: |
|
|
|