Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
davisadam10 committed Aug 3, 2024
1 parent cb7b7f7 commit ac74be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,30 +42,19 @@ jobs:
- name: Initialize Conda
shell: bash
run: |
source $HOME/miniconda/etc/profile.d/conda.sh
conda init bash
conda config --set auto_activate_base false
# Step 3: Create and activate the conda environment (if not using environment.yml)
- name: Create and activate conda environment
shell: bash
run: |
source $HOME/miniconda/etc/profile.d/conda.sh
conda create --name OpenVPCal python=3.11 -y
conda activate OpenVPCal
# Step 4: Install Python dependencies
- name: Install Python dependencies
shell: bash
run: |
source $HOME/miniconda/etc/profile.d/conda.sh
conda activate OpenVPCal
pip install -r requirements.txt
# Step 5: Run unit tests
# Step 4: Run unit tests
- name: Run unit tests
shell: bash
run: |
source $HOME/miniconda/etc/profile.d/conda.sh
conda activate OpenVPCal
pytest tests
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dependencies:
- python=3.11
- conda-forge::openimageio=2.5.9.0
- conda-forge::py-openimageio=2.5.9.0
- pip
- pip:
- alabaster==0.7.13
- altgraph==0.17.4
Expand Down

0 comments on commit ac74be7

Please sign in to comment.