mirror of
https://github.com/kohya-ss/sd-scripts.git
synced 2026-04-16 00:49:40 +00:00
Merge branch 'sd3' into network-wavelet-loss
This commit is contained in:
5
.github/workflows/tests.yml
vendored
5
.github/workflows/tests.yml
vendored
@@ -12,6 +12,9 @@ on:
|
||||
- dev
|
||||
- sd3
|
||||
|
||||
# CKV2_GHA_1: "Ensure top-level permissions are not set to write-all"
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
@@ -40,7 +43,7 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
# Pre-install torch to pin version (requirements.txt has dependencies like transformers which requires pytorch)
|
||||
pip install dadaptation==3.2 torch==${{ matrix.pytorch-version }} torchvision==0.19.0 pytest==8.3.4 PyWavelets==1.8.0
|
||||
pip install dadaptation==3.2 torch==${{ matrix.pytorch-version }} torchvision pytest==8.3.4 PyWavelets==1.8.0
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Test with pytest
|
||||
|
||||
3
.github/workflows/typos.yml
vendored
3
.github/workflows/typos.yml
vendored
@@ -12,6 +12,9 @@ on:
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
# CKV2_GHA_1: "Ensure top-level permissions are not set to write-all"
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
6
tests/test_fine_tune.py
Normal file
6
tests/test_fine_tune.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import fine_tune
|
||||
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
6
tests/test_flux_train.py
Normal file
6
tests/test_flux_train.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import flux_train
|
||||
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
5
tests/test_flux_train_network.py
Normal file
5
tests/test_flux_train_network.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import flux_train_network
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the flux_train_network imports without syntax errors
|
||||
assert True
|
||||
6
tests/test_sd3_train.py
Normal file
6
tests/test_sd3_train.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import sd3_train
|
||||
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
5
tests/test_sd3_train_network.py
Normal file
5
tests/test_sd3_train_network.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import sd3_train_network
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the flux_train_network imports without syntax errors
|
||||
assert True
|
||||
6
tests/test_sdxl_train.py
Normal file
6
tests/test_sdxl_train.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import sdxl_train
|
||||
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
6
tests/test_sdxl_train_network.py
Normal file
6
tests/test_sdxl_train_network.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import sdxl_train_network
|
||||
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
6
tests/test_train.py
Normal file
6
tests/test_train.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import train_db
|
||||
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
5
tests/test_train_network.py
Normal file
5
tests/test_train_network.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import train_network
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
5
tests/test_train_textual_inversion.py
Normal file
5
tests/test_train_textual_inversion.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import train_textual_inversion
|
||||
|
||||
def test_syntax():
|
||||
# Very simply testing that the train_network imports without syntax errors
|
||||
assert True
|
||||
Reference in New Issue
Block a user