neural-amp-modeler

Neural network emulator for guitar amplifiers
Log | Files | Refs | README | LICENSE

test_install.py (237B)


      1 # File: test_install.py
      2 # File Created: Tuesday, 2nd February 2021 9:46:01 pm
      3 # Author: Steven Atkinson ([email protected])
      4 
      5 import pytest
      6 
      7 
      8 def test_torch():
      9     import torch  # noqa F401
     10 
     11 
     12 if __name__ == "__main__":
     13     pytest.main()