diff --git a/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt b/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt
index d01acdcadcb0994177ff8e5224159a6f2f39e2d8..8ebfcf2a51319770ddf4da9deac2450ce681eecd 100644
--- a/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt
+++ b/Event/xAOD/xAODEventInfoAthenaPool/CMakeLists.txt
@@ -17,6 +17,7 @@ atlas_add_poolcnv_library( xAODEventInfoAthenaPoolPoolCnv
 
 # Install files from the package.
 atlas_install_joboptions( share/*.py )
+atlas_install_scripts( test/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
 
 # Find the T/P test CMake code.
 find_package( AthenaPoolUtilitiesTest )
@@ -28,7 +29,7 @@ endif()
 
 # Set up the T/P converter test(s).
 if( NOT GENERATIONBASE )
-   run_tpcnv_legacy_test( xAODEventInfoAthenaPool_20.0.0.3 AOD-20.0.0.3-full
+   run_tpcnv_test( xAODEventInfoAthenaPool_20.0.0.3 AOD-20.0.0.3-full
       REQUIRED_LIBRARIES xAODEventInfoAthenaPoolPoolCnv )
 endif()
-# TPCnv unit tests disabled for AthGeneration project due to a dependency on DetDescrCnvSvc
\ No newline at end of file
+# TPCnv unit tests disabled for AthGeneration project due to a dependency on DetDescrCnvSvc
diff --git a/Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py b/Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py
new file mode 100755
index 0000000000000000000000000000000000000000..ba68eed2c30d402dc4ac64bc96eaa2da76d23bfe
--- /dev/null
+++ b/Event/xAOD/xAODEventInfoAthenaPool/test/xAODEventInfoAthenaPool_20.0.0.3_test.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+"""
+Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
+"""
+
+from AthenaPoolUtilities.TPCnvTestConfig import TPCnvTest
+
+if __name__ == "__main__":
+    infile = 'aod/AOD-20.0.0.3/AOD-20.0.0.3-full.pool.root'
+
+    keys = [
+        #xAOD::EventInfo
+        'EventInfo'
+    ]
+
+    TPCnvTest(infile, keys)