Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev_1.9.0' into development_issu…
Browse files Browse the repository at this point in the history
…e_1325
  • Loading branch information
Beat Buesser committed Dec 10, 2021
2 parents 72fd3d7 + b77725e commit 0ed10bf
Show file tree
Hide file tree
Showing 7 changed files with 700 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/goturn/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ exit_code=0

pytest --cov-report=xml --cov=art --cov-append -q -vv tests/estimators/object_tracking/test_pytorch_goturn.py --framework=pytorch --durations=0
if [[ $? -ne 0 ]]; then exit_code=1; echo "Failed estimators/object_tracking/test_pytorch_goturn tests"; fi
pytest --cov-report=xml --cov=art --cov-append -q -vv tests/attacks/evasion/test_adversarial_texture_pytorch.py --framework=pytorch --durations=0
if [[ $? -ne 0 ]]; then exit_code=1; echo "Failed attacks/evasion/test_adversarial_texture_pytorch tests"; fi

exit ${exit_code}
1 change: 1 addition & 0 deletions .github/workflows/ci-style-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
python -m pip install --upgrade pip setuptools wheel
pip install -q pylint==2.7.4 mypy==0.812 pycodestyle==2.7.0 black==20.8b1
pip install -q -r requirements_test.txt
pip install pluggy==0.13.1
pip install tensorflow==2.4.1
pip install keras==2.4.3
pip list
Expand Down
1 change: 1 addition & 0 deletions art/attacks/evasion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from art.attacks.evasion.adversarial_patch.adversarial_patch_numpy import AdversarialPatchNumpy
from art.attacks.evasion.adversarial_patch.adversarial_patch_tensorflow import AdversarialPatchTensorFlowV2
from art.attacks.evasion.adversarial_patch.adversarial_patch_pytorch import AdversarialPatchPyTorch
from art.attacks.evasion.adversarial_texture.adversarial_texture_pytorch import AdversarialTexturePyTorch
from art.attacks.evasion.adversarial_asr import CarliniWagnerASR
from art.attacks.evasion.auto_attack import AutoAttack
from art.attacks.evasion.auto_projected_gradient_descent import AutoProjectedGradientDescent
Expand Down
Empty file.
Loading

0 comments on commit 0ed10bf

Please sign in to comment.