Just remove all pipelines from main settings and use this inside spider.
This will define the pipeline to user per spider
class testSpider(InitSpider):
name="test"
custom_settings = {
'ITEM_PIPELINES': {
'app.MyPipeline': 400
}
}