Skip to content

Commit

Permalink
Ah yes, fixes the fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mansuf committed Jun 5, 2024
1 parent f1f00f0 commit 482285a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 28 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,26 +42,16 @@ jobs:
run: |
py -${{ matrix.python-version }}-64 -m pip install -U pip
py -${{ matrix.python-version }}-64 -m pip install -U wheel pyinstaller setuptools
py -${{ matrix.python-version }}-64 -m pip install -U .[optional]
py -${{ matrix.python-version }}-32 -m pip install -U pip
py -${{ matrix.python-version }}-32 -m pip install -U wheel pyinstaller setuptools
py -${{ matrix.python-version }}-32 -m pip install -U .[optional]
- name: Test imports
run: |
# Setup for venv python
Write-Output "Creating virtual environment"
python -m venv test_imports
# Enable virtual environment
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass
.\test_imports\Scripts\Activate.ps1
# Install mangadex-downloader
Write-Output "Installing mangadex-downloader"
pip install .[optional]
Write-Output "Executing test imports"
python -m mangadex_downloader --version
# I..... have no idea for this
mangadex-dl --version
- name: Get python version
run: |
Expand Down
16 changes: 2 additions & 14 deletions .github/workflows/build_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,8 @@ jobs:
- name: Test imports
run: |
# Setup for venv python
Write-Output "Creating virtual environment"
python -m venv test_imports
# Enable virtual environment
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass
.\test_imports\Scripts\Activate.ps1
# Install mangadex-downloader
Write-Output "Installing mangadex-downloader"
pip install .[optional]
Write-Output "Executing test imports"
python -m mangadex_downloader --version
# I..... have no idea for this
mangadex-dl --version
- name: Get python version
run: |
Expand Down

0 comments on commit 482285a

Please sign in to comment.