Skip to content

Commit

Permalink
testing6
Browse files Browse the repository at this point in the history
  • Loading branch information
juztamau5 committed Mar 10, 2024
1 parent 37d69c0 commit fc0168f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-20.04
python-version: '3.10'
- os: ubuntu-latest
- os: ubuntu-22.04
python-version: '3.11'

steps:
Expand All @@ -40,7 +40,7 @@ jobs:
uses: actions/cache@v4
with:
path: openai
key: ${{ runner.os }}-cache-openai-${{ matrix.python-version }}-${{ hashFiles('openai/**') }}
key: cache-openai-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('openai/**') }}-

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
6 changes: 6 additions & 0 deletions src/learning/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,9 @@
print(
"OpenAI directory not found. Please build OpenAI files first: cmake . && make -j"
)

# Initialize the OpenAI module
import retro.data
from retro._retro import core_path

retro.data.init_core_info(core_path())

0 comments on commit fc0168f

Please sign in to comment.